BindableAttribute Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
BindableAttribute sınıfının yeni bir örneğini başlatır.
Aşırı Yüklemeler
BindableAttribute(Boolean) |
Boole değeriyle sınıfının yeni bir örneğini BindableAttribute başlatır. |
BindableAttribute(BindableSupport) |
Değerlerden biriyle sınıfının yeni bir örneğini BindableAttributeBindableSupport başlatır. |
BindableAttribute(Boolean, BindingDirection) |
BindableAttribute sınıfının yeni bir örneğini başlatır. |
BindableAttribute(BindableSupport, BindingDirection) |
BindableAttribute sınıfının yeni bir örneğini başlatır. |
BindableAttribute(Boolean)
- Kaynak:
- BindableAttribute.cs
- Kaynak:
- BindableAttribute.cs
- Kaynak:
- BindableAttribute.cs
Boole değeriyle sınıfının yeni bir örneğini BindableAttribute başlatır.
public:
BindableAttribute(bool bindable);
public BindableAttribute (bool bindable);
new System.ComponentModel.BindableAttribute : bool -> System.ComponentModel.BindableAttribute
Public Sub New (bindable As Boolean)
Parametreler
- bindable
- Boolean
true
bağlama özelliğini kullanmak için; aksi takdirde , false
.
Örnekler
Aşağıdaki kod örneği, verileri bağlamak için bir özelliği uygun olarak işaretler. Bu kod örneği yeni BindableAttributebir oluşturur, değerini olarak BindableAttribute.Yesayarlar ve özelliğine bağlar.
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
Açıklamalar
olarak ayarlanmış true
bir özelliği BindableAttribute işaretlediğinizde, bu özniteliğin değeri sabit üye Yesolarak ayarlanır. olarak ayarlanmış olarak BindableAttribute işaretlenmiş bir özellik için false
değeri şeklindedir No. Bu nedenle, kodunuzda bu özniteliğin değerini denetlemek için özniteliğini veya BindableAttribute.Noolarak BindableAttribute.Yes belirtmeniz gerekir.
Ayrıca bkz.
Şunlara uygulanır
BindableAttribute(BindableSupport)
- Kaynak:
- BindableAttribute.cs
- Kaynak:
- BindableAttribute.cs
- Kaynak:
- BindableAttribute.cs
Değerlerden biriyle sınıfının yeni bir örneğini BindableAttributeBindableSupport başlatır.
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)
Parametreler
- flags
- BindableSupport
Değerlerden BindableSupport biri.
Örnekler
Aşağıdaki kod örneği, verileri bağlamak için bir özelliği uygun olarak işaretler. Bu kod örneği yeni BindableAttributebir oluşturur, değerini olarak BindableAttribute.Yesayarlar ve özelliğine bağlar.
[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
Açıklamalar
olarak ayarlanmış true
bir özelliği BindableAttribute işaretlediğinizde, bu özniteliğin değeri sabit üye Yesolarak ayarlanır. olarak ayarlanmış olarak BindableAttribute işaretlenmiş bir özellik için false
değeri şeklindedir No. Bu nedenle, kodunuzda bu özniteliğin değerini denetlemek için özniteliğini veya BindableAttribute.Noolarak BindableAttribute.Yes belirtmeniz gerekir.
Ayrıca bkz.
Şunlara uygulanır
BindableAttribute(Boolean, BindingDirection)
- Kaynak:
- BindableAttribute.cs
- Kaynak:
- BindableAttribute.cs
- Kaynak:
- BindableAttribute.cs
BindableAttribute sınıfının yeni bir örneğini başlatır.
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)
Parametreler
- bindable
- Boolean
true
bağlama özelliğini kullanmak için; aksi takdirde , false
.
- direction
- BindingDirection
Değerlerden BindingDirection biri.
Şunlara uygulanır
BindableAttribute(BindableSupport, BindingDirection)
- Kaynak:
- BindableAttribute.cs
- Kaynak:
- BindableAttribute.cs
- Kaynak:
- BindableAttribute.cs
BindableAttribute sınıfının yeni bir örneğini başlatır.
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)
Parametreler
- flags
- BindableSupport
Değerlerden BindableSupport biri.
- direction
- BindingDirection
Değerlerden BindingDirection biri.