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

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

Méthodes publiques

Méthode Description
DateSelectionChangedEventArgs ( System.Windows.RoutedEvent id, IList removedDates, IList addedDates ) : System

The constructor for date selection changed args

Méthodes protégées

Méthode 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

Méthode Description
DateSelectionChangedEventArgs ( ) : System
DateSelectionChangedEventArgs ( IList removedDates, IList addedDates ) : System

Method Details

DateSelectionChangedEventArgs() public méthode

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
Résultat System

InvokeEventHandler() protected méthode

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.
Résultat void