ICoreWindow.Activated イベント

定義

ウィンドウのアクティブ化または非アクティブ化が完了したときに発生するイベントを指定します。

// 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
ICoreWindow::Activated_revoker Activated(auto_revoke_t, TypedEventHandler<CoreWindow, WindowActivatedEventArgs const&> const& handler) const;
event TypedEventHandler<CoreWindow,WindowActivatedEventArgs> Activated;
function onActivated(eventArgs) { /* Your code */ }
iCoreWindow.addEventListener("activated", onActivated);
iCoreWindow.removeEventListener("activated", onActivated);
- or -
iCoreWindow.onactivated = onActivated;
Event Activated As TypedEventHandler(Of CoreWindow, WindowActivatedEventArgs) 

イベントの種類

適用対象

こちらもご覧ください