C# Класс Microsoft.Samples.KMoore.WPFSamples.DateControls.DateSelectionChangedEventArgs

The inputs to a selection changed event handler
Наследование: System.Windows.RoutedEventArgs
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
DateSelectionChangedEventArgs ( System.Windows.RoutedEvent id, IList removedDates, IList addedDates ) : System

The constructor for date selection changed args

Защищенные методы

Метод Описание
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.

Приватные методы

Метод Описание
DateSelectionChangedEventArgs ( ) : System
DateSelectionChangedEventArgs ( IList removedDates, IList addedDates ) : System

Описание методов

DateSelectionChangedEventArgs() публичный Метод

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
Результат System

InvokeEventHandler() защищенный Метод

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.
Результат void