全屏模式下带有控件的 WPF 窗口
我有一个托管 Web 浏览器控件的 WPF 窗口。我希望这个 WPF 窗口始终位于顶部。现在,例如用户浏览 Youtube 页面,网络播放器播放视频。用户单击 Youtube 播放器中的全屏按钮,视频就会充满屏幕。但我现在托管 Web 浏览器控件的 WPF 窗口仍然位于所有内容之上,而且看起来很奇怪,因为在后台,视频全屏播放。
有什么方法可以让嵌入式控件告诉 WPF 窗口它现在处于全屏模式,以便 WPF 不再位于顶部(例如隐藏)?
感谢您的任何建议!
I have a WPF window hosting a web browser control. I want this WPF window to always be on top. Now for example user surfs to a Youtube page and the web player plays a video. User clicks on the full screen button in the Youtube player and the video fills the screen. But my WPF window that hosts web browser control now is still on top of everything and it looks weird because in the background, the video plays fullscreen.
Is there any way an embedded control can tell WPF window that it's in fullscreen mode now so that the WPF is no longer on top, say maybe hidden?
Thanks for any advice!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
Topmost
属性。如果您显示的内容不在Popup
中,那么这应该有效:Try to play with
Topmost
property. If you display content not inPopup
than this should works: