BindableSupport Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies values to indicate whether a property can be bound to a data element or another property.
public enum class BindableSupport
public enum BindableSupport
type BindableSupport =
Public Enum BindableSupport
- Inheritance
Fields
Name | Value | Description |
---|---|---|
No | 0 | The property is not bindable at design time. |
Yes | 1 | The property is bindable at design time. |
Default | 2 | The property is set to the default. |
Examples
For an example on how to use the BindableSupport enumeration to indicate whether a property can be bound, see the sample code in BindableAttribute.BindableAttribute.
Remarks
This class is used at design time to indicate whether a designer should offer a property as available for data binding in a visual designer. This class does not affect whether the property can be data bound at runtime.