Container for other UI controls that exposes various status values from the CSLA .NET business object acting as DataContext.
More...
|
| override void | DataObjectChanged () |
| | This method is called when the data object to which the control is bound has changed.
|
| override void | DataPropertyChanged (PropertyChangedEventArgs? e) |
| | This method is called when a property of the data object to which the control is bound has changed.
|
| override void | DataBindingListChanged (ListChangedEventArgs e) |
| | This method is called if the data object is an IBindingList, and the ListChanged event was raised by the data object.
|
| override void | DataObservableCollectionChanged (System.Collections.Specialized.NotifyCollectionChangedEventArgs e) |
| | This method is called if the data object is an INotifyCollectionChanged, and the CollectionChanged event was raised by the data object.
|
| virtual void | DataObservableCollectionChanged (NotifyCollectionChangedEventArgs e) |
| | This method is called if the data object is an INotifyCollectionChanged, and the CollectionChanged event was raised by the data object.
|
| void | FindChildBindings () |
| | Scans all child controls of this panel for object bindings, and calls FoundBinding for each binding found.
|
| virtual void | FoundBinding (Binding bnd, FrameworkElement control, DependencyProperty prop) |
| | Called by FindChildBindings each time an object binding is found.
|
|
| bool | CanCreateObject [get, protected set] |
| | Exposes the CanCreateObject property of the DataContext business object.
|
| bool | CanGetObject [get, protected set] |
| | Exposes the CanGetObject property of the DataContext business object.
|
| bool | CanEditObject [get, protected set] |
| | Exposes the CanEditObject property of the DataContext business object.
|
| bool | CanDeleteObject [get, protected set] |
| | Exposes the CanDeleteObject property of the DataContext business object.
|
| bool | IsDeleted [get, protected set] |
| | Exposes the IsDeleted property of the DataContext business object.
|
| bool | IsDirty [get, protected set] |
| | Exposes the IsDirty property of the DataContext business object.
|
| bool | IsNew [get, protected set] |
| | Exposes the IsNew property of the DataContext business object.
|
| bool | IsSavable [get, protected set] |
| | Exposes the IsSavable property of the DataContext business object.
|
| bool | IsValid [get, protected set] |
| | Exposes the IsValid property of the DataContext business object.
|
| object? | DataObject [get] |
| | Gets a reference to the current data object.
|
Container for other UI controls that exposes various status values from the CSLA .NET business object acting as DataContext.
This control provides access to the IsDirty, IsNew, IsDeleted, IsValid and IsSavable properties of a business object. The purpose behind this control is to expose those properties in a way that supports WFP data binding against those values.