MenuFlyoutItem.Click Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando si fa clic su una voce di menu.
// Register
event_token Click(RoutedEventHandler const& handler) const;
// Revoke with event_token
void Click(event_token const* cookie) const;
// Revoke with event_revoker
MenuFlyoutItem::Click_revoker Click(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler Click;
function onClick(eventArgs) { /* Your code */ }
menuFlyoutItem.addEventListener("click", onClick);
menuFlyoutItem.removeEventListener("click", onClick);
- or -
menuFlyoutItem.onclick = onClick;
Public Custom Event Click As RoutedEventHandler
<MenuFlyoutItem Click="eventhandler"/>