In This Topic

ItemChecked Event (ThumbnailEx)

In This Topic
Occurs when the check state of a thumbnail changes. Bubble routing strategy.
Syntax
'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.

PropertyDescription
True is the thumbnail is checked, else False.  
(Inherited from System.Windows.RoutedEventArgs)
The thumbnail index. A value between 0 and thumbnails count.  
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
See Also