C# 程序判断打开的应用程序是否处于最大化模式
我想知道Windows操作系统中是否有任何库可以让我们捕获其他应用程序的窗口状态
I would like to know whether any libraries are available in Windows OS which allows us to capture other applications window states
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PInvoke 调用
GetWindowPlacement
。有关详细信息,请参阅此处:
http://www.pinvoke.net/default.aspx /user32/getwindowplacement.html
您可以使用
FindWindowEx
查找窗口的句柄。Use PInvoke to call
GetWindowPlacement
.See here for details:
http://www.pinvoke.net/default.aspx/user32/getwindowplacement.html
You can use
FindWindowEx
to find the handle to the window.Process Hacker 作为一组可以在 .NET 中链接的大型库。
它应该拥有您做您想做的事情所需的一切 - 甚至更多。
Process Hacker as a large set of libraries that can be linked against in .NET.
It should have everything you need to do what you want - and a lot more.