'Declaration
Public Event PreviewItemSelectionChanged As ThumbnailEx.PreviewItemSelectionChangedEventHandler
public event ThumbnailEx.PreviewItemSelectionChangedEventHandler PreviewItemSelectionChanged
public event PreviewItemSelectionChanged: ThumbnailEx.PreviewItemSelectionChangedEventHandler;
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event ThumbnailEx.PreviewItemSelectionChangedEventHandler* PreviewItemSelectionChanged
public: event ThumbnailEx.PreviewItemSelectionChangedEventHandler^ PreviewItemSelectionChanged
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 | The thumbnail index. A value between 0 and thumbnails count. |
OriginalSource | (Inherited from System.Windows.RoutedEventArgs) |
RoutedEvent | (Inherited from System.Windows.RoutedEventArgs) |
Selected | True is the thumbnail is selected, False otherwise. |
Source | (Inherited from System.Windows.RoutedEventArgs) |
See Also