用于窗口聚焦的 Win32API
我想使用API函数将焦点设置在Windows(XP,Vista,7(无论什么,任何支持.NET 3.0或更高版本的版本)下的一个窗口上。 这样,当您按下某个键时,操作系统会将焦点转移到另一个窗口。
谢谢
P.S:如果您知道 .NET 2.0(或更高版本)中的任何类,我可以使用它来开发此解决方案,我希望您告诉我。
I want to use API functions to set focus on one window under Windows (XP , Vista , 7 (whatever , any version who support .NET 3.0 or later)). So that when you press a key , the OS changes focus to another window.
Thanks
P.S: If you know any class in .NET 2.0 (or later) with which I can develop this solution I'd like you to tell me about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以 p/invoke SetForegroundWindow。 这将带来一个窗口并聚焦于它。
这确实需要您拥有 Windows HWND。
顺便说一句,用户不喜欢意外地聚焦窗口; 所以要谨慎使用。 此外,Windows 不一定会实际将窗口向前移动;而是将窗口向前移动。 在某些情况下,它可能只是“闪烁”标题栏。
You could p/invoke SetForegroundWindow. This will bring a window forward and focus on it.
This does require that you have the windows HWND.
As a side note, user's do not appreciate unexpectedly focusing a window; so use with caution. Additionally, Windows will not necessarily actually bring the window forward; it may instead just "flash" the title bar under some circumstances.