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 DateTimePropertyChangeEventArgs(
	RoutedEvent routedEvent,
	DependencyProperty property,
	DateTime oldValue,
	DateTime newValue
)
Visual Basic (Declaration)
Public Sub New ( _
	routedEvent As RoutedEvent, _
	property As DependencyProperty, _
	oldValue As DateTime, _
	newValue As DateTime _
)

Parameters

routedEvent
Type: System.Windows..::..RoutedEvent
The RoutedEvent.
property
Type: System.Windows..::..DependencyProperty
The DependencyProperty.
oldValue
Type: System..::..DateTime
The old value of the specified property.
newValue
Type: System..::..DateTime
The new value of the specified property.

See Also