4

我在Windows 7 64 位机器上使用python 2.7 (32 位)。我正在使用win32 Api来自动化一些 Windows 任务,我也是 python 和 win32 api 的新手。我看到了类似的问题,但在 python 中没有,而且我很难理解代码,遗憾的是我是新来的,所以我不能评论和提问,因为我的代表不到 50 岁,所以我不得不提出自己的问题。

最近我一直在使用系统托盘(通知区域)。我已经按名称单击(向左或向右)托盘中的任何图标。

现在我需要帮助的是右键单击后访问上下文菜单项。

因此,当我执行右键单击时,会出现一个弹出菜单。我尝试获取它的句柄,以便我可以单击它的项目或内容,但我收到一个错误,说它是无效的菜单句柄。如果我尝试 win32gui.GetSubMenu 失败,win32gui.GetMenu 失败,就像 win32gui.GetMenuItemCount 返回 -1 一样简单,我需要有关如何访问此类菜单、导航扔它并单击项目的帮助。

我一直在尝试的代码片段:

# retrieves a handle to the notification area toolbar
tb = getNotificationAreaToolbar()

# clicks on an icon in the system tray say I'm right clicking the sound icon 
#(in my case AMD HDMI Output)
clickSystemTrayIcon('right', 'AMD HDMI Output', tb)

#now the context popup menu comes up.
# According to MSDN the class name for such menu is #32768
hPopupmenu = win32gui.FindWindow("#32768", "")

# An example of a try to access the menu items
# Getting the count: this is returning -1 saying the handle is not a menu handle
count = win32gui.GetMenuItemCount(hPopupMenu)

#send a command, doesn't do anything
win32gui.PostMessage(tb, win32con.WM_COMMAND, win32gui.GetMenuItemId(hPopupmenu,1) , 0)

# the thing that makes me sure that I'm getting the right window of the popup is 
# win32gui.GetWindowRect(hPopmenu) it's returning the right position of the menu

非常感谢您的任何帮助,谢谢!

4

1 回答 1

3

首先,你不能假设FindWindow调用会得到弹出菜单窗口。如果您的代码运行得太快,则可能是该窗口尚未创建。您应该在非无限循环中玩 Sleep。

其次,FindWindow返回 HWND,而不是 HMENU。尝试使用MN_GETHMENU Windows 消息(将其发送到 HWND,接收 HMENU 作为结果)。

于 2014-02-13T08:59:47.713 回答