WebUIView.Activated 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 la visualizzazione viene attivata.
// Register
event_token Activated(TypedEventHandler<WebUIView, IActivatedEventArgs const&> const& handler) const;
// Revoke with event_token
void Activated(event_token const* cookie) const;
// Revoke with event_revoker
WebUIView::Activated_revoker Activated(auto_revoke_t, TypedEventHandler<WebUIView, IActivatedEventArgs const&> const& handler) const;
public event TypedEventHandler<WebUIView,IActivatedEventArgs> Activated;
function onActivated(eventArgs) { /* Your code */ }
webUIView.addEventListener("activated", onActivated);
webUIView.removeEventListener("activated", onActivated);
- or -
webUIView.onactivated = onActivated;
Public Custom Event Activated As TypedEventHandler(Of WebUIView, IActivatedEventArgs)