C# Class Microsoft.Samples.KMoore.WPFSamples.DateControls.DateSelectionChangedEventArgs

The inputs to a selection changed event handler
Inheritance: System.Windows.RoutedEventArgs
Mostrar archivo Open project: daszat/zetbox Class Usage Examples

Public Methods

Method Description
DateSelectionChangedEventArgs ( System.Windows.RoutedEvent id, IList removedDates, IList addedDates ) : System

The constructor for date selection changed args

Protected Methods

Method Description
InvokeEventHandler ( Delegate genericHandler, object genericTarget ) : void

This method is used to perform the proper type casting in order to call the type-safe DateSelectionChangedEventHandler delegate for the DateSelectionChangedEvent event.

Private Methods

Method Description
DateSelectionChangedEventArgs ( ) : System
DateSelectionChangedEventArgs ( IList removedDates, IList addedDates ) : System

Method Details

DateSelectionChangedEventArgs() public method

The constructor for date selection changed args
public DateSelectionChangedEventArgs ( System.Windows.RoutedEvent id, IList removedDates, IList addedDates ) : System
id System.Windows.RoutedEvent The event ID for the event about to fire -- should probably be MonthCalendar.DateSelectionChangedEventID
removedDates IList The dates that were unselected during this event
addedDates IList The dates that were selected during this event
return System

InvokeEventHandler() protected method

This method is used to perform the proper type casting in order to call the type-safe DateSelectionChangedEventHandler delegate for the DateSelectionChangedEvent event.
protected InvokeEventHandler ( Delegate genericHandler, object genericTarget ) : void
genericHandler System.Delegate The handler to invoke.
genericTarget object The current object along the event's route.
return void