TeachingTip.ActionButtonClick 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 dopo che è stato fatto clic sul pulsante azione.
// Register
event_token ActionButtonClick(TypedEventHandler<TeachingTip, IInspectable const&> const& handler) const;
// Revoke with event_token
void ActionButtonClick(event_token const* cookie) const;
// Revoke with event_revoker
TeachingTip::ActionButtonClick_revoker ActionButtonClick(auto_revoke_t, TypedEventHandler<TeachingTip, IInspectable const&> const& handler) const;
public event TypedEventHandler<TeachingTip,object> ActionButtonClick;
function onActionButtonClick(eventArgs) { /* Your code */ }
teachingTip.addEventListener("actionbuttonclick", onActionButtonClick);
teachingTip.removeEventListener("actionbuttonclick", onActionButtonClick);
- or -
teachingTip.onactionbuttonclick = onActionButtonClick;
Public Custom Event ActionButtonClick As TypedEventHandler(Of TeachingTip, Object)
Tipo evento
TypedEventHandler<TeachingTip,IInspectable>