如何将我的 winform 应用程序与另一个应用程序对接

发布于 2024-08-04 03:12:16 字数 166 浏览 6 评论 0原文

我正在尝试执行我的 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 技术交流群。

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

发布评论

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

评论(2

ζ澈沫 2024-08-11 03:12:16

您必须将消息发送到其他应用程序并对其进行分析。以下是 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.

故事未完 2024-08-11 03:12:16

挂钩可以工作;但是,您提到的两个程序(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.

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