Python 中的 Windows 系统菜单

发布于 2024-11-25 15:10:20 字数 471 浏览 3 评论 0原文

我正在尝试在 Windows 系统菜单中为我的应用程序创建一个新项目,并在单击该项目时执行操作。

我已经使用下面的代码解决了第一部分。

import win32con
import win32gui

hwnd = win32gui.GetForegroundWindow ()
hmenu = win32gui.GetSystemMenu (hwnd, False)
win32gui.AppendMenu(hmenu, win32con.MF_SEPARATOR, 0, '')
win32gui.AppendMenu(hmenu, win32con.MF_STRING, 100, 'New Menu Item')

我不知道如何将功能链接到按钮?这样,单击时就会执行操作

任何帮助都会很棒。

谢谢。

唐纳德.

ps 使用 Python 2.6.5 和 Windows XP

I am trying to create a new item in the Windows System Menu for my app and have an action performed when it is click.

I have worked out the frist part using the below code.

import win32con
import win32gui

hwnd = win32gui.GetForegroundWindow ()
hmenu = win32gui.GetSystemMenu (hwnd, False)
win32gui.AppendMenu(hmenu, win32con.MF_SEPARATOR, 0, '')
win32gui.AppendMenu(hmenu, win32con.MF_STRING, 100, 'New Menu Item')

I can not work out how link a function to the button? So that an action is performed when it is click

Any help would be great.

Thanks.

Donald.

p.s. Using Python 2.6.5 and Windows XP

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

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

发布评论

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

评论(1

大姐,你呐 2024-12-02 15:10:20

您必须连接到菜单的窗口过程并处理正在发送的消息。参见例如 http://wiki.wxpython.org/HookingTheWndProc

You have to hook into the windows procedure of the menu and handle the messages being sent. See e.g. http://wiki.wxpython.org/HookingTheWndProc

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