CoreWindow.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.
Viene attivato quando la finestra completa l'attivazione o la disattivazione.
// Register
event_token Activated(TypedEventHandler<CoreWindow, WindowActivatedEventArgs const&> const& handler) const;
// Revoke with event_token
void Activated(event_token const* cookie) const;
// Revoke with event_revoker
CoreWindow::Activated_revoker Activated(auto_revoke_t, TypedEventHandler<CoreWindow, WindowActivatedEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWindow,WindowActivatedEventArgs> Activated;
function onActivated(eventArgs) { /* Your code */ }
coreWindow.addEventListener("activated", onActivated);
coreWindow.removeEventListener("activated", onActivated);
- or -
coreWindow.onactivated = onActivated;
Public Custom Event Activated As TypedEventHandler(Of CoreWindow, WindowActivatedEventArgs) Implements Activated