如何在vb中使与应用程序无关的窗口最小化或最大化其窗口状态?
如果您在任务管理器中注意到,当您右键单击正在运行的任务时,您会看到许多选项,其中包括“最小化”和“最大化”。有没有办法在vb中实现这个目标?
If you have ever noticed in the Task Manager, when you right-click on the running task, you have many options which include 'Minimize' and 'Maximize'. Is there anyway to do achieve this in vb?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您正在寻找的代码的示例。它将循环遍历所有活动进程并最小化所有窗口。
在您的应用程序中,您可能需要使用类似 Process.GetProcessesByName 的方法来查找要操作的特定窗口。
Here is an example of the code you are looking for. It will loop through all the active processes and minimize all the windows.
In your app you will probably want to use something like
Process.GetProcessesByName
to find the specific window you want to manipulate.