如何让ESC在受信任的应用程序中退出全屏模式?

发布于 2024-09-05 05:35:22 字数 407 浏览 4 评论 0原文

键盘限制更改的一个后果是,在受信任的应用程序中按 ESC 不会退出全屏模式。这使您可以使用 ESC 键执行其他功能。但是,您必须提供自己的用户界面才能退出全屏模式。

参考: http://msdn.microsoft .com/en-us/library/ee721083(v=VS.95).aspx#fullscreen_support

我需要让按 ESC 会在受信任的应用程序中退出全屏模式,而不在所有页面中提供 UI 控件。

请给我提示,谢谢。

One consequence of the keyboard-restriction change is that pressing ESC will not exit full-screen mode in trusted applications. This enables you to use the ESC key for other functionality. However, you must provide your own user interface for exiting full-screen mode.

Reference: http://msdn.microsoft.com/en-us/library/ee721083(v=VS.95).aspx#fullscreen_support

I need to make pressing ESC will exit from full-screen mode in trusted application without provide a UI control in all pages.

Please give me hints, thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我也只是我 2024-09-12 05:35:22

这就是你的做法。

 private void UserControl_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.Key == Key.Escape && App.Host.Content.IsFullScreen)
     {
         App.Host.Content.IsFullScreen = false;
     }
}

private void UserControl_Load(object sender, RoutedEventArgs e)
{
    this.AddHandler(UIElement.KeyDownEvent, new KeyEventHandler(UserControl_KeyDown), true);
}

通过使用 AddHandler 方法,您可以指示您想要接收 keydown 事件,无论它是否已被标记为由另一个控件处理。因此,无论当前哪个控件具有焦点,按下 Esc 键都应该向上浮起。

This is the way you do it.

 private void UserControl_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.Key == Key.Escape && App.Host.Content.IsFullScreen)
     {
         App.Host.Content.IsFullScreen = false;
     }
}

private void UserControl_Load(object sender, RoutedEventArgs e)
{
    this.AddHandler(UIElement.KeyDownEvent, new KeyEventHandler(UserControl_KeyDown), true);
}

By using the AddHandler method you can indicate that you want to recieve the keydown event regardless of whether it has been marked as handled by another control. Hence regardless of what control currently has the focus, the pressing of the Esc key should bubble up to the top.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文