BindableAttribute Конструкторы
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Инициализирует новый экземпляр класса BindableAttribute.
Перегрузки
BindableAttribute(Boolean) |
Инициализирует новый экземпляр класса BindableAttribute, используя значение типа Boolean. |
BindableAttribute(BindableSupport) |
Инициализирует новый экземпляр класса BindableAttribute с использованием одного из стандартных значений BindableSupport. |
BindableAttribute(Boolean, BindingDirection) |
Инициализирует новый экземпляр класса BindableAttribute. |
BindableAttribute(BindableSupport, BindingDirection) |
Инициализирует новый экземпляр класса BindableAttribute. |
BindableAttribute(Boolean)
- Исходный код:
- BindableAttribute.cs
- Исходный код:
- BindableAttribute.cs
- Исходный код:
- BindableAttribute.cs
Инициализирует новый экземпляр класса BindableAttribute, используя значение типа Boolean.
public:
BindableAttribute(bool bindable);
public BindableAttribute (bool bindable);
new System.ComponentModel.BindableAttribute : bool -> System.ComponentModel.BindableAttribute
Public Sub New (bindable As Boolean)
Параметры
- bindable
- Boolean
Значение true
, чтобы использовать свойство для связывания; в противном случае — значение false
.
Примеры
В следующем примере кода свойство помечает как соответствующее для привязки данных. В этом примере кода создается новый BindableAttributeобъект , присваивается его значение BindableAttribute.Yesи выполняется привязка к свойству .
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
Комментарии
Если свойство помечается значением BindableAttributetrue
, значением этого атрибута является константный член Yes. Для свойства, помеченного с заданным BindableAttribute значением false
, значение равно No. Поэтому, чтобы проверка значение этого атрибута в коде, необходимо указать атрибут как BindableAttribute.Yes или BindableAttribute.No.
См. также раздел
Применяется к
BindableAttribute(BindableSupport)
- Исходный код:
- BindableAttribute.cs
- Исходный код:
- BindableAttribute.cs
- Исходный код:
- BindableAttribute.cs
Инициализирует новый экземпляр класса BindableAttribute с использованием одного из стандартных значений BindableSupport.
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)
Параметры
- flags
- BindableSupport
Одно из значений перечисления BindableSupport.
Примеры
В следующем примере кода свойство помечает как соответствующее для привязки данных. В этом примере кода создается новый BindableAttributeобъект , присваивается его значение BindableAttribute.Yesи выполняется привязка к свойству .
[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
Комментарии
Если свойство помечается значением BindableAttributetrue
, значением этого атрибута является константный член Yes. Для свойства, помеченного с заданным BindableAttribute значением false
, значение равно No. Поэтому, чтобы проверка значение этого атрибута в коде, необходимо указать атрибут как BindableAttribute.Yes или BindableAttribute.No.
См. также раздел
Применяется к
BindableAttribute(Boolean, BindingDirection)
- Исходный код:
- BindableAttribute.cs
- Исходный код:
- BindableAttribute.cs
- Исходный код:
- BindableAttribute.cs
Инициализирует новый экземпляр класса BindableAttribute.
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)
Параметры
- bindable
- Boolean
Значение true
, чтобы использовать свойство для связывания; в противном случае — значение false
.
- direction
- BindingDirection
Одно из значений перечисления BindingDirection.
Применяется к
BindableAttribute(BindableSupport, BindingDirection)
- Исходный код:
- BindableAttribute.cs
- Исходный код:
- BindableAttribute.cs
- Исходный код:
- BindableAttribute.cs
Инициализирует новый экземпляр класса BindableAttribute.
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)
Параметры
- flags
- BindableSupport
Одно из значений перечисления BindableSupport.
- direction
- BindingDirection
Одно из значений перечисления BindingDirection.