Binding.PropertyName Propiedad

Definición

Obtiene el nombre de la propiedad con enlace a datos del control.

public:
 property System::String ^ PropertyName { System::String ^ get(); };
public string PropertyName { get; }
member this.PropertyName : string
Public ReadOnly Property PropertyName As String

Valor de propiedad

Nombre de una propiedad de control con la que se va a establecer un enlace.

Ejemplos

En el ejemplo de código siguiente se imprime el PropertyName valor de cada Binding control de un formulario.

private:
   void PrintPropertyNameAndIsBinding()
   {
      for each ( Control^ thisControl in this->Controls)
      {
         for each ( Binding^ thisBinding in thisControl->DataBindings )
         {
            Console::WriteLine( "\n {0}", thisControl );
            // Print the PropertyName value for each binding.
            Console::WriteLine( thisBinding->PropertyName );
         }
      }
   }
private void PrintPropertyNameAndIsBinding()
{
   foreach(Control thisControl in this.Controls)
   {
      foreach(Binding thisBinding in thisControl.DataBindings)
      {
         Console.WriteLine("\n" + thisControl.ToString());
         // Print the PropertyName value for each binding.
         Console.WriteLine(thisBinding.PropertyName);
      }
   }
}
Private Sub PrintPropertyNameAndIsBinding
    Dim thisControl As Control
    Dim thisBinding As Binding
    For Each thisControl In Me.Controls
        For Each thisBinding In thisControl.DataBindings
            Console.WriteLine(ControlChars.CrLf & thisControl.ToString)
            ' Print the PropertyName value for each binding.
            Console.WriteLine(thisBinding.PropertyName)
        Next
    Next
End Sub

Comentarios

PropertyName Use para especificar la propiedad de control que desea enlazar a una lista de un origen de datos. Normalmente, se enlaza una propiedad para mostrar, como la Text propiedad de un TextBox control. Sin embargo, dado que puede enlazar cualquier propiedad de un control, puede crear controles mediante programación en tiempo de ejecución mediante datos de una base de datos.

Se aplica a