确定Windows 8 Style(Metro)应用程序何时处于后台或失去焦点时

Adr*_*ian 6 c# focus microsoft-metro windows-8

每当用户移动到另一个应用程序时,我都会想要暂停一个游戏.例如,当选择超级按钮菜单时,用户将Windows键,alt-tab按到另一个应用程序,单击另一个应用程序或任何其他会使应用程序失去焦点的应用程序.

当然这应该是微不足道的!我只有一个Page和一个Canvas,我已经尝试GotFocusLostFocus事件Canvas,但他们不开火.

我来最接近的是使用PointerCaptureLostCoreWindow捕捉指针之后.当选择了超级按钮菜单时,这适用于应用程序切换,但是当按下Windows键时这不起作用.

编辑:

在下面的Chris Bowen的帮助下,最终的"解决方案"如下:

public MainPage() {
    this.InitializeComponent();
    CapturePointer();
    Window.Current.CoreWindow.PointerCaptureLost += PointerCaptureLost;
    Window.Current.CoreWindow.PointerPressed += PointerPressed;
    Window.Current.VisibilityChanged += VisibilityChanged;
}

private void VisibilityChanged(object sender, VisibilityChangedEventArgs e) {
    if(e.Visible) {
        CapturePointer();
    }
    else {
        Pause();
    }
}

void PointerPressed(CoreWindow sender, PointerEventArgs args) {
    CapturePointer();
}

private void CapturePointer() {
    if(hasCapture == false) {
        Window.Current.CoreWindow.SetPointerCapture();
        hasCapture = true;
    }
}

void PointerCaptureLost(CoreWindow sender, PointerEventArgs args) {
    hasCapture = false;
    Pause();
}

private bool hasCapture;
Run Code Online (Sandbox Code Playgroud)

它似乎仍然应该是一种更简单的方式,所以如果你发现更优雅的东西,请告诉我.

小智 7

尝试使用Window.VisibilityChanged事件.像这样的东西:

public MainPage()
{
    this.InitializeComponent();
    Window.Current.VisibilityChanged += Current_VisibilityChanged;
}

void Current_VisibilityChanged(object sender, Windows.UI.Core.VisibilityChangedEventArgs e)
{
    if (!e.Visible) 
    {
        //Something useful
    }
}
Run Code Online (Sandbox Code Playgroud)

虽然它不会捕获Charms激活,但它应该适用于您提到的其他情况.