如何从 wpf 页面调用模式窗口?
如何从 wpf 页面调用模式窗口?当从父 Window 调用 Window.showDialog() 时,Window.showDialog() 会使窗口成为模态窗口,但是当从 Page 调用时,模态行为消失。我尝试使用 PopUp 控件,但它似乎不像窗口那样可自定义。
How do I invoke a modal window from a wpf page? Window.showDialog() makes the window modal when it is invoked from a parent Window, however when invoked from a Page, the modal behaviour disappears. I tried using a PopUp control, but it doesnt appear to be as customizable as a window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您如何调用该窗口,但是从框架内的页面内调用
new Window().ShowDialog()
会使新窗口成为整个应用程序的模式。I am not sure how are you calling the window, but calling
new Window().ShowDialog()
from within a page inside frame, makes the new window modal to the whole application.