如何将我的 winform 应用程序与另一个应用程序对接
我正在尝试执行我的 winform 应用程序停靠并跟踪另一个应用程序,例如 IE 或 word。我的完整计划是在地下运行该程序,然后运行这个特定的应用程序,我的winform将最大化并停靠,如果移动则跟随,如果该应用程序最小化则最小化。
你们能给我一些关于如何做到这一点的想法吗?
谢谢
I am trying to do my winform application dock and follow another application, like IE or word. My full plan is run the program underground and then this specific application is running, my winform will maximize and dock, will follow if moved, minimize if this application is minimized.
Can you guys show me some ideas about how to do it?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须将消息发送到其他应用程序并对其进行分析。以下是 MSDN 以及 MSDN 杂志。因此,您将不得不使用旧的 P/Invoke,因为没有托管 API。
You will have to get the messages send to the other application and analyze them. Here are some resources on window system hooks on MSDN and in the MSDN Magazin. So you will have to use good old P/Invoke because there is no managed API.
挂钩可以工作;但是,您提到的两个程序(IE 和 Word)都提供了允许您自定义用户界面的 API。我会先看看那里。顺便说一句,由于 IE 环境的限制,您在使用标准钩子 API 时会遇到很多麻烦。
Hooks can work; however, both the programs you mention (IE & Word) provide APIs that allow you to customize the user interface. I would first look there. BTW, Due to IE's restricted environment your going to have a lot of trouble getting the standard hook APIs to work.