Skip to main content

HeaderControl.DependencyPropertyChanged Event

Namespace: DevExpress.Xpf.Scheduling.Visual

Assembly: DevExpress.Xpf.Scheduling.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public event DependencyPropertyChangedEventHandler DependencyPropertyChanged

Event Data

The DependencyPropertyChanged event's data class is DependencyPropertyChangedEventArgs. The following properties provide information specific to this event:

Property Description
NewValue Gets the value of the property after the change.
OldValue Gets the value of the property before the change.
Property Gets the identifier for the dependency property where the value change occurred.

The event data class exposes the following methods:

Method Description
Equals(Object) Determines whether the provided object is equivalent to the current DependencyPropertyChangedEventArgs.
Equals(DependencyPropertyChangedEventArgs) Determines whether the provided DependencyPropertyChangedEventArgs is equivalent to the current DependencyPropertyChangedEventArgs.
GetHashCode() Gets a hash code for this DependencyPropertyChangedEventArgs.
ToString() Returns the fully qualified type name of this instance. Inherited from ValueType.
See Also