'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.
Property | Description |
---|---|
Button | The button pressed. A member of the MouseButton enumeration. |
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