Class DependencyPropertyChangedEventArgs
Arguments for dependency property change event
Inheritance
System.Object
DependencyPropertyChangedEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: EmptyKeys.UserInterface
Assembly: EmptyKeys.UserInterface.dll
Syntax
public class DependencyPropertyChangedEventArgs
Constructors
DependencyPropertyChangedEventArgs(Object, Object, DependencyProperty)
Initializes a new instance of the DependencyPropertyChangedEventArgs structure
Declaration
public DependencyPropertyChangedEventArgs(object newValue, object oldValue, DependencyProperty property)
Parameters
Type | Name | Description |
---|---|---|
System.Object | newValue | The new value. |
System.Object | oldValue | The old value. |
DependencyProperty | property | The property. |
Properties
NewValue
Gets or sets the new value.
Declaration
public object NewValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The new value. |
OldValue
Gets or sets the old value.
Declaration
public object OldValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The old value. |
Property
Gets or sets the property.
Declaration
public DependencyProperty Property { get; set; }
Property Value
Type | Description |
---|---|
DependencyProperty | The property. |