In This Article

NullableDateTimePropertyChangedRoutedEventArgs Class

Provides event arguments for a nullable DateTime property change routed event, indicating the old and new values.

public class NullableDateTimePropertyChangedRoutedEventArgs : PropertyChangedRoutedEventArgs<DateTime?>
Inheritance:
Object EventArgs RoutedEventArgs PropertyChangedRoutedEventArgs<Nullable<DateTime>> Object

Constructors

NullableDateTimePropertyChangedRoutedEventArgs(Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the NullableDateTimePropertyChangedRoutedEventArgs class.

public NullableDateTimePropertyChangedRoutedEventArgs(DateTime? oldValue, DateTime? newValue)
Parameter Type Description
oldValue Nullable<DateTime>

The previous value of the property being tracked as reported by an event.

newValue Nullable<DateTime>

The new value of the property being tracked as reported by an event.

NullableDateTimePropertyChangedRoutedEventArgs(RoutedEvent, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the NullableDateTimePropertyChangedRoutedEventArgs class.

public NullableDateTimePropertyChangedRoutedEventArgs(RoutedEvent routedEvent, DateTime? oldValue, DateTime? newValue)
Parameter Type Description
routedEvent RoutedEvent

The routed event identifier for this event arguments instance.

oldValue Nullable<DateTime>

The previous value of the property being tracked as reported by an event.

newValue Nullable<DateTime>

The new value of the property being tracked as reported by an event.

Inherited Members