Initializes a new instance of the DateTimePropertyChangeEventArgs class with the specified routed event, dependency property, old and new DateTime value.

Namespace:  C1.WPF.C1Schedule
Assembly:  C1.WPF.C1Schedule (in C1.WPF.C1Schedule.dll)

Syntax

C#
public NullableDateTimePropertyChangeEventArgs(
	RoutedEvent routedEvent,
	DependencyProperty property,
	Nullable<DateTime> oldValue,
	Nullable<DateTime> newValue
)
Visual Basic (Declaration)
Public Sub New ( _
	routedEvent As RoutedEvent, _
	property As DependencyProperty, _
	oldValue As Nullable(Of DateTime), _
	newValue As Nullable(Of DateTime) _
)

Parameters

routedEvent
Type: System.Windows..::..RoutedEvent
The RoutedEvent.
property
Type: System.Windows..::..DependencyProperty
The DependencyProperty.
oldValue
Type: System..::..Nullable<(Of <(<'DateTime>)>)>
The old value of the specified property.
newValue
Type: System..::..Nullable<(Of <(<'DateTime>)>)>
The new value of the specified property.

See Also