BindablePropertyAttribute.IsBindable Property
Gets whether the property is bindable.
Namespace: DevExpress.Mvvm.DataAnnotations
Assembly: DevExpress.Mvvm.v24.2.dll
Declaration
Property Value
Type | Description |
---|---|
Boolean | true, if the property is bindable; otherwise, false. |
Remarks
See the example below:
public class DataViewModel {
[BindableProperty(isBindable: false)]
public virtual bool NotBindableProperty { get; set; }
}
See Also