当用户在 XBAP 应用程序中按 F5 或 CTRL+R 时如何停止重新加载页面

发布于 2024-11-09 11:41:08 字数 172 浏览 0 评论 0原文

我有一个 XBAP 应用程序。

在 XBAP 页面中,如果用户按 F5CTRL+R,则必须向用户显示确认消息。

如果是,则必须重新加载页面。

如果否,则当前页面必须保持原样。

任何人都可以帮助如何做到这一点。

I have an XBAP Application.

In XBAP Page, if the user presses F5 or CTRL+R then the confirmation message must be shown to the user.

If Yes then the page must be reloded.

If No then the current page must remain as it is.

Can any one help how to do this.

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

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

发布评论

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

评论(1

葵雨 2024-11-16 11:41:08

您可以调用 Navigating 事件参数的 NavigationMode,如下面的代码所示,

Application.Current.Navigating += new NavigatingCancelEventHandler(Current_Navigating);

  void Current_Navigating(object sender, NavigatingCancelEventArgs e)
  {
   if (e.NavigationMode == NavigationMode.Refresh)
   {
    //put your logic here
   }
  }

如​​果用户通过 F5 或 Ctrl+R 组合键触发刷新操作,您可以捕获该事件并处理它。

You could call on NavigationMode of Navigating event parameter, like code below shows,

Application.Current.Navigating += new NavigatingCancelEventHandler(Current_Navigating);

  void Current_Navigating(object sender, NavigatingCancelEventArgs e)
  {
   if (e.NavigationMode == NavigationMode.Refresh)
   {
    //put your logic here
   }
  }

If user trigger refresh operation either by F5 or Ctrl+R combination keys, you could catch this event and handle it.

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