'DeclarationPublic Event ItemSelectionChanged As ThumbnailEx.ItemSelectionChangedEventHandler
public event ThumbnailEx.ItemSelectionChangedEventHandler ItemSelectionChanged
public event ItemSelectionChanged: ThumbnailEx.ItemSelectionChangedEventHandler;
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event ThumbnailEx.ItemSelectionChangedEventHandler* ItemSelectionChanged
public: event ThumbnailEx.ItemSelectionChangedEventHandler^ ItemSelectionChanged
Event Data
The event handler receives an argument of type ThumbnailEx.ItemSelectionChangedEventArgs containing data related to this event. The following ThumbnailEx.ItemSelectionChangedEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Handled | (Inherited from System.Windows.RoutedEventArgs) |
| Idx | |
| OriginalSource | (Inherited from System.Windows.RoutedEventArgs) |
| RoutedEvent | (Inherited from System.Windows.RoutedEventArgs) |
| Selected | |
| Source | (Inherited from System.Windows.RoutedEventArgs) |
See Also