用于窗口聚焦的 Win32API

发布于 2024-07-29 01:51:51 字数 185 浏览 1 评论 0原文

我想使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜光 2024-08-05 01:51:51

您可以 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文