C# 클래스 Microsoft.Samples.KMoore.WPFSamples.DateControls.DateSelectionChangedEventArgs

The inputs to a selection changed event handler
상속: System.Windows.RoutedEventArgs
파일 보기 프로젝트 열기: daszat/zetbox 1 사용 예제들

공개 메소드들

메소드 설명
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