'Declaration
Public Event ItemChecked As ThumbnailEx.ItemCheckedEventHandler
public event ThumbnailEx.ItemCheckedEventHandler ItemChecked
public event ItemChecked: ThumbnailEx.ItemCheckedEventHandler;
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event ThumbnailEx.ItemCheckedEventHandler* ItemChecked
public: event ThumbnailEx.ItemCheckedEventHandler^ ItemChecked
Event Data
The event handler receives an argument of type ThumbnailEx.ItemCheckedEventArgs containing data related to this event. The following ThumbnailEx.ItemCheckedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Checked | True is the thumbnail is checked, else False. |
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) |
Source | (Inherited from System.Windows.RoutedEventArgs) |
See Also