Python 中的 Windows 系统菜单
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须连接到菜单的窗口过程并处理正在发送的消息。参见例如 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