Skip to main content

DataObjectBase Members

Represents the base for classes containing information about specific data-aware grid elements.

Constructors

Name Description
DataObjectBase() Initializes a new instance of the DataObjectBase class with the default settings.

Fields

Name Description
DataObjectProperty static Identifies the DataObjectBase.DataObject attached property.
NeedsResetEventProperty static Identifies the DataObjectBase.NeedsResetEvent attached property.
RaiseResetEventWhenObjectIsLoadedProperty static Identifies the DataObjectBase.RaiseResetEventWhenObjectIsLoaded attached property.
ResetEvent static Identifies the DataObjectBase.Reset event.

Methods

Name Description
AddResetHandler(DependencyObject, RoutedEventHandler) static Adds the specified handler for the DataObjectBase.Reset event of the specified data object.
GetDataObject(DependencyObject) static Gets the value of the DataObjectBase.DataObject attached property for a specified DependencyObject.
GetNeedsResetEvent(DependencyObject) static Gets the value of the DataObjectBase.NeedsResetEvent attached property for a specified DependencyObject.
GetRaiseResetEventWhenObjectIsLoaded(DependencyObject) static Gets the value of the DataObjectBase.RaiseResetEventWhenObjectIsLoaded attached property for a specified DependencyObject.
RaiseResetEvents() Raises the DataObjectBase.Reset events for the current DataObjectBase and all its child data objects.
RemoveResetHandler(DependencyObject, RoutedEventHandler) static Removes the specified handler from the DataObjectBase.Reset event of the specified data object.
SetDataObject(DependencyObject, DataObjectBase) static Sets the value of the DataObjectBase.DataObject attached property to a specified DependencyObject.
SetNeedsResetEvent(DependencyObject, Boolean) static Sets the value of the DataObjectBase.NeedsResetEvent attached property to a specified DependencyObject.
SetRaiseResetEventWhenObjectIsLoaded(DependencyObject, Boolean) static Sets the value of the DataObjectBase.RaiseResetEventWhenObjectIsLoaded attached property to a specified DependencyObject.

Events

Name Description
ContentChanged Occurs when the contents of the DataObjectBase are changed.
PropertyChanged Occurs when a property value changes.

Attached Events

Name Description
Reset static For internal use.

Attached Properties

Name Description
DataObject static Gets or sets the content data object.
NeedsResetEvent static Gets or sets a value indicating whether it is necessary to raise the DataObjectBase.Reset event.
RaiseResetEventWhenObjectIsLoaded static Gets or sets a value indicating whether it is necessary to raise the DataObjectBase.Reset event when the current data object is loaded.
See Also