当用户在 XBAP 应用程序中按 F5 或 CTRL+R 时如何停止重新加载页面
我有一个 XBAP 应用程序。
在 XBAP 页面中,如果用户按 F5
或 CTRL+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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调用 Navigating 事件参数的 NavigationMode,如下面的代码所示,
如果用户通过 F5 或 Ctrl+R 组合键触发刷新操作,您可以捕获该事件并处理它。
You could call on NavigationMode of Navigating event parameter, like code below shows,
If user trigger refresh operation either by F5 or Ctrl+R combination keys, you could catch this event and handle it.