Window.Activated 事件

定义

成功激活窗口时发生。

public:
 virtual event WindowActivatedEventHandler ^ Activated;
// Register
event_token Activated(WindowActivatedEventHandler const& handler) const;

// Revoke with event_token
void Activated(event_token const* cookie) const;

// Revoke with event_revoker
Window::Activated_revoker Activated(auto_revoke_t, WindowActivatedEventHandler const& handler) const;
public event WindowActivatedEventHandler Activated;
function onActivated(eventArgs) { /* Your code */ }
window.addEventListener("activated", onActivated);
window.removeEventListener("activated", onActivated);
- or -
window.onactivated = onActivated;
Public Custom Event Activated As WindowActivatedEventHandler 

事件类型

示例

以下代码示例演示此事件的典型使用模式。

void Current_Activated(object sender, Windows.UI.Core.WindowActivatedEventArgs e)
{
    if (e.WindowActivationState == 
        Windows.UI.Core.CoreWindowActivationState.Deactivated)
    {
        // Show the "paused" UI. 
        VisualStateManager.GoToState(this, "PauseUI", false);
    }
    else if (e.WindowActivationState == 
        Windows.UI.Core.CoreWindowActivationState.PointerActivated)
    {
        // Show the "active" UI. 
        VisualStateManager.GoToState(this, "ActivateUI", false);
    }
}

注解

当系统激活或停用 Window 时,会发生此事件。 应用可以通过检查 WindowActivatedEventArgs.WindowActivationState 属性来确定 Window 激活的状态。 窗口可能在屏幕上可见,但 (不处于活动状态,例如,在贴靠的应用) 。 此外,如果系统的任何其他部分将焦点从窗口移开,则会发生此事件。 这可能因用户交互或代码而发生, WindowActivationState 将指示发生了哪个操作。

适用于