In This Topic

ItemClicked Event (ThumbnailEx)

In This Topic
Occurs when a thumbnail is clicked. Bubble routing strategy.
Syntax
'Declaration
 
Public Event ItemClicked As ThumbnailEx.ItemClickedEventHandler
public event ThumbnailEx.ItemClickedEventHandler ItemClicked
public event ItemClicked: ThumbnailEx.ItemClickedEventHandler; 
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event ThumbnailEx.ItemClickedEventHandler* ItemClicked
public:
event ThumbnailEx.ItemClickedEventHandler^ ItemClicked
Event Data

The event handler receives an argument of type ThumbnailEx.ItemClickedEventArgs containing data related to this event. The following ThumbnailEx.ItemClickedEventArgs properties provide information specific to this event.

PropertyDescription
The button pressed. A member of the MouseButton enumeration.  
(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