RoutedPropertyChangedEventArgs<T> Constructors
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.
Overloads
RoutedPropertyChangedEventArgs<T>(T, T) |
Initializes a new instance of the RoutedPropertyChangedEventArgs<T> class, with provided old and new values. |
RoutedPropertyChangedEventArgs<T>(T, T, RoutedEvent) |
Initializes a new instance of the RoutedPropertyChangedEventArgs<T> class, with provided old and new values, and an event identifier. |
RoutedPropertyChangedEventArgs<T>(T, T)
Initializes a new instance of the RoutedPropertyChangedEventArgs<T> class, with provided old and new values.
public:
RoutedPropertyChangedEventArgs(T oldValue, T newValue);
public RoutedPropertyChangedEventArgs (T oldValue, T newValue);
new System.Windows.RoutedPropertyChangedEventArgs<'T> : 'T * 'T -> System.Windows.RoutedPropertyChangedEventArgs<'T>
Public Sub New (oldValue As T, newValue As T)
Parameters
- oldValue
- T
Previous value of the property, prior to the event being raised.
- newValue
- T
Current value of the property at the time of the event.
Remarks
The types passed must match the declared constraints of the specific generic.
Applies to
RoutedPropertyChangedEventArgs<T>(T, T, RoutedEvent)
Initializes a new instance of the RoutedPropertyChangedEventArgs<T> class, with provided old and new values, and an event identifier.
public:
RoutedPropertyChangedEventArgs(T oldValue, T newValue, System::Windows::RoutedEvent ^ routedEvent);
public RoutedPropertyChangedEventArgs (T oldValue, T newValue, System.Windows.RoutedEvent routedEvent);
new System.Windows.RoutedPropertyChangedEventArgs<'T> : 'T * 'T * System.Windows.RoutedEvent -> System.Windows.RoutedPropertyChangedEventArgs<'T>
Public Sub New (oldValue As T, newValue As T, routedEvent As RoutedEvent)
Parameters
- oldValue
- T
Previous value of the property, prior to the event being raised.
- newValue
- T
Current value of the property at the time of the event.
- routedEvent
- RoutedEvent
Identifier of the routed event that this arguments class carries information for.
Remarks
The types passed for oldValue
and newValue
must match the declared constraints of the specific generic.