BindableAttribute Constructor (Boolean)
.NET Framework (current version)
Initializes a new instance of the BindableAttribute class with a Boolean value.
Assembly: System (in System.dll)
Parameters
- bindable
-
Type:
System::Boolean
true to use property for binding; otherwise, false.
When you mark a property with the BindableAttribute set to true, the value of this attribute is set to the constant member Yes. For a property marked with the BindableAttribute set to false, the value is No. Therefore, to check the value of this attribute in your code, you must specify the attribute as BindableAttribute::Yes or BindableAttribute::No.
The following code example marks a property as appropriate to bind data to. This code example creates a new BindableAttribute, sets its value to BindableAttribute::Yes, and binds it to the property.
.NET Framework
Available since 1.1
Silverlight
Available since 4.0
Available since 1.1
Silverlight
Available since 4.0
Show: