BindableAttribute Konstruktoren

Definition

Initialisiert eine neue Instanz der BindableAttribute-Klasse.

Überlädt

BindableAttribute(Boolean)

Initialisiert eine neue Instanz der BindableAttribute-Klasse mit einem booleschen Wert.

BindableAttribute(BindableSupport)

Initialisiert eine neue Instanz der BindableAttribute-Klasse mit einem der BindableSupport-Werte.

BindableAttribute(Boolean, BindingDirection)

Initialisiert eine neue Instanz der BindableAttribute-Klasse.

BindableAttribute(BindableSupport, BindingDirection)

Initialisiert eine neue Instanz der BindableAttribute-Klasse.

BindableAttribute(Boolean)

Quelle:
BindableAttribute.cs
Quelle:
BindableAttribute.cs
Quelle:
BindableAttribute.cs

Initialisiert eine neue Instanz der BindableAttribute-Klasse mit einem booleschen Wert.

public:
 BindableAttribute(bool bindable);
public BindableAttribute (bool bindable);
new System.ComponentModel.BindableAttribute : bool -> System.ComponentModel.BindableAttribute
Public Sub New (bindable As Boolean)

Parameter

bindable
Boolean

true, wenn die Eigenschaft zum Binden verwendet wird; andernfalls false.

Beispiele

Im folgenden Codebeispiel wird eine Eigenschaft markiert, an die Daten gebunden werden können. In diesem Codebeispiel wird ein neues BindableAttributeerstellt, dessen Wert auf BindableAttribute.Yesfestgelegt und an die -Eigenschaft gebunden.

public:
   [property:Bindable(true)]
   property int MyProperty 
   {
      int get()
      {
         // Insert code here.
         return 0;
      }
      void set( int theValue )
      {
         // Insert code here.
      }
   }
[Bindable(true)]
 public int MyProperty {
    get {
       // Insert code here.
       return 0;
    }
    set {
       // Insert code here.
    }
 }
<Bindable(true)> _
Public Property MyProperty As Integer
   Get
      ' Insert code here.
      Return 0
   End Get
   Set
      ' Insert code here.
   End Set
End Property

Hinweise

Wenn Sie eine Eigenschaft mit dem BindableAttribute festlegen true, wird der Wert dieses Attributs auf den konstanten Member Yesfestgelegt. Für eine Eigenschaft, die BindableAttribute mit auf gekennzeichnet falseist, ist Noder Wert . Daher müssen Sie das Attribut als BindableAttribute.Yes oder BindableAttribute.Noangeben, um den Wert dieses Attributs in Ihrem Code zu überprüfen.

Weitere Informationen

Gilt für:

BindableAttribute(BindableSupport)

Quelle:
BindableAttribute.cs
Quelle:
BindableAttribute.cs
Quelle:
BindableAttribute.cs

Initialisiert eine neue Instanz der BindableAttribute-Klasse mit einem der BindableSupport-Werte.

public:
 BindableAttribute(System::ComponentModel::BindableSupport flags);
public BindableAttribute (System.ComponentModel.BindableSupport flags);
new System.ComponentModel.BindableAttribute : System.ComponentModel.BindableSupport -> System.ComponentModel.BindableAttribute
Public Sub New (flags As BindableSupport)

Parameter

flags
BindableSupport

Einer der BindableSupport-Werte.

Beispiele

Im folgenden Codebeispiel wird eine Eigenschaft markiert, an die Daten gebunden werden können. In diesem Codebeispiel wird ein neues BindableAttributeerstellt, dessen Wert auf BindableAttribute.Yesfestgelegt und an die -Eigenschaft gebunden.


   [Bindable(BindableSupport::Yes)]
   int get()
   {
      
      // Insert code here.
      return 0;
   }

   void set( int theValue )
   {
      
      // Insert code here.
   }

}
[Bindable(BindableSupport.Yes)]
 public int MyProperty {
    get {
       // Insert code here.
       return 0;
    }
    set {
       // Insert code here.
    }
 }
<Bindable(BindableSupport.Yes)> _
Public Property MyProperty As Integer
   Get
      ' Insert code here.
      Return 0
   End Get
   Set
      ' Insert code here.
   End Set
End Property

Hinweise

Wenn Sie eine Eigenschaft mit dem BindableAttribute festlegen true, wird der Wert dieses Attributs auf den konstanten Member Yesfestgelegt. Für eine Eigenschaft, die BindableAttribute mit auf gekennzeichnet falseist, ist Noder Wert . Daher müssen Sie das Attribut als BindableAttribute.Yes oder BindableAttribute.Noangeben, um den Wert dieses Attributs in Ihrem Code zu überprüfen.

Weitere Informationen

Gilt für:

BindableAttribute(Boolean, BindingDirection)

Quelle:
BindableAttribute.cs
Quelle:
BindableAttribute.cs
Quelle:
BindableAttribute.cs

Initialisiert eine neue Instanz der BindableAttribute-Klasse.

public:
 BindableAttribute(bool bindable, System::ComponentModel::BindingDirection direction);
public BindableAttribute (bool bindable, System.ComponentModel.BindingDirection direction);
new System.ComponentModel.BindableAttribute : bool * System.ComponentModel.BindingDirection -> System.ComponentModel.BindableAttribute
Public Sub New (bindable As Boolean, direction As BindingDirection)

Parameter

bindable
Boolean

true, wenn die Eigenschaft zum Binden verwendet wird; andernfalls false.

direction
BindingDirection

Einer der BindingDirection-Werte.

Gilt für:

BindableAttribute(BindableSupport, BindingDirection)

Quelle:
BindableAttribute.cs
Quelle:
BindableAttribute.cs
Quelle:
BindableAttribute.cs

Initialisiert eine neue Instanz der BindableAttribute-Klasse.

public:
 BindableAttribute(System::ComponentModel::BindableSupport flags, System::ComponentModel::BindingDirection direction);
public BindableAttribute (System.ComponentModel.BindableSupport flags, System.ComponentModel.BindingDirection direction);
new System.ComponentModel.BindableAttribute : System.ComponentModel.BindableSupport * System.ComponentModel.BindingDirection -> System.ComponentModel.BindableAttribute
Public Sub New (flags As BindableSupport, direction As BindingDirection)

Parameter

flags
BindableSupport

Einer der BindableSupport-Werte.

direction
BindingDirection

Einer der BindingDirection-Werte.

Gilt für: