如何向其他应用程序窗口标题栏添加按钮(XP/Vista)

发布于 2024-07-08 17:18:27 字数 132 浏览 11 评论 0原文

我有一个打开窗口的处理程序,该窗口不一定由我的进程打开。 如何向该窗口添加一个按钮,并让该按钮在单击时调用某个应用程序 (.exe)? 该按钮可能位于系统菜单或最小化按钮旁边。 这应该适用于 XP 和 Vista(每个版本可以采用不同的方法)。

I have the handler of an open window which wasn't necessarily open by my process. How can I add a button to that window and make the button call a certain application (.exe) when clicked? The button could be next to the system menu or the minimize button. This should work for both XP and Vista (a different approach for each version is OK).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

握住你手 2024-07-15 17:18:27

标准方法是使用 SetWindowsHookEx 将 DLL 注入到进程中,挂钩 WH_CALLWNDPROC 来监视 WM_NCPAINT 消息。 这曾经很有效,但现在不行了。 视觉样式和 Vista UAC 会让你长出很长的胡子。 这在 Windows 3.x 时代很常见,我已经有一段时间没有看到这样做了。

The standard approach is to inject a DLL into the process with SetWindowsHookEx, hooking WH_CALLWNDPROC to monitor the WM_NCPAINT message. That used to work pretty well but no more. Visual Styles and Vista UAC will make you grow a pretty long beard. Common in the Windows 3.x days, I haven't seen this done in quite a while.

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