Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在另一个应用程序中进行用户操作。可以说,我想从我的应用程序中关闭 Chrome 的标签。如何使用 c++ 实现这一点?最好是Qt
提前致谢
在 Windows 上,您可以使用 WinAPI 函数SendMessage将事件发送到另一个应用程序。这可用于模拟另一个应用程序的用户输入。为此,您需要获取其窗口句柄 (hWnd)。您可以使用 WinAPI 函数FindWindow来做到这一点。