RadWindow 始终置顶
有人有使用 Telerik 的 RadWindow
wpf 控件的经验吗? 我的问题是,当我打开 RadWindow 并最小化应用程序时,当我最大化应用程序时,RadWindow 不可见。我可以使用 alt+tab 再次将 RadWindow 置于前面,但我真的很想避免这样做。 我正在执行以下操作来显示 RadWindow
:
this.theWindow.ShowDialog();
其中 theWindow
是继承自 RadWindow
的类的实例。
有什么想法吗?
Does anyone have any experience with the RadWindow
wpf control from Telerik?
My problem is that when I open a RadWindow
and minimize my application then when I maximize the application the RadWindow
is not visible. I can use alt+tab to get the RadWindow
in front again, but I would really like to avoid having to do this.
I'm doing the following to display the RadWindow
:
this.theWindow.ShowDialog();
Where theWindow
is an instance of a class that inherits from RadWindow
.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Telerik 论坛。解决方案是将 RadWindow 的
Owner
属性设置为我的应用程序的主窗口。I found a solution to the problem at the Telerik forums. The solution was to set the
Owner
property of the RadWindow to my application's main window.