TreeView.ItemInvoked Event

Definition

Occurs when an item in the tree is invoked.

This documentation applies to WinUI 2 for UWP (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

// Register
event_token ItemInvoked(TypedEventHandler<TreeView, TreeViewItemInvokedEventArgs const&> const& handler) const;

// Revoke with event_token
void ItemInvoked(event_token const* cookie) const;

// Revoke with event_revoker
TreeView::ItemInvoked_revoker ItemInvoked(auto_revoke_t, TypedEventHandler<TreeView, TreeViewItemInvokedEventArgs const&> const& handler) const;
public event TypedEventHandler<TreeView,TreeViewItemInvokedEventArgs> ItemInvoked;
Public Custom Event ItemInvoked As TypedEventHandler(Of TreeView, TreeViewItemInvokedEventArgs) 

Event Type

Remarks

This event is not fired when the item's multiple-selection checkbox is checked or unchecked.

Applies to