设置窗口相对于其他窗口的 Z-Index
在 VB.NET 中,如何相对于其他窗口设置窗口的 z-index?
我的程序在其他程序的后台运行,当特定事件发生时,我的自定义类就会弹出。但是,有时,此窗口位于其他应用程序的后台。我怎样才能使我的窗口始终位于前面?我意识到存在像我这样的问题,但我在 Visual Basic 中找不到任何问题。
我真的很喜欢 VB.NET 中的代码,而不是 C#。
谢谢,
奥丁努尔夫
How can I, in VB.NET, set a window's z-index comparatively to other windows?
My program runs in the background of other programs, and when a specific event happens, my custom class pops up. However, sometimes, this window is in the background of other apps. How can I make it such that my window always comes to the front? I realize that there are questions like mine, but I cannot find any in Visual Basic.
I would really appreciate code in VB.NET, not C#.
Thanks,
Odinulf
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置
TopMost
属性 为True
。Set the
TopMost
property toTrue
.