DependencyPropertyChangedEventArgs.Property Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the identifier for the dependency property where the value change occurred.
public:
property System::Windows::DependencyProperty ^ Property { System::Windows::DependencyProperty ^ get(); };
public System.Windows.DependencyProperty Property { get; }
member this.Property : System.Windows.DependencyProperty
Public ReadOnly Property Property As DependencyProperty
Property Value
The identifier field of the dependency property where the value change occurred.
Remarks
This property is relevant if used within a common PropertyChangedCallback that is registered for several properties, and it is necessary to disambiguate which property change invoked the callback. Property is not typically relevant for raising events, because there is usually a 1:1 correspondence between properties and events that report the property change. The event that was raised is itself the indication of which property changed.