BindablePropertyAttribute.IsBindable Property
Gets whether the property is bindable.
Namespace: DevExpress.Mvvm.DataAnnotations
Assembly: DevExpress.Mvvm.v24.1.dll
NuGet Packages: DevExpress.Mvvm, DevExpress.Win.Navigation
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