CoreWindow.Activated Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Is fired when the window completes activation or deactivation.
// 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