如何访问缩略图工具栏按钮?
How to access thumbnail toolbar buttons?
我正在尝试使用应用程序进行一些控制(例如 Discord 或任何具有缩略图工具栏按钮的应用程序)。我已经尝试 google、搜索或只是查看文档。在 python 中有什么方法可以做到这一点吗? (Screenshot of what I want to control.)
我认为没有办法访问工具栏,当然也不能从其他进程访问。
然而,您可以使用 Spy++ 之类的工具在 WM_COMMAND 中查找按钮 ID,然后自己发送消息以执行工具栏按钮单击。这当然是特定于应用程序的,如果应用程序更新,id 可能会更改。
When a thumbnail button is clicked, the application receives a WM_COMMAND message with the high word of the wParam set to THBN_CLICKED and the low word set to the button ID. This message is dispatched to the window to which the thumbnail belongs.
我正在尝试使用应用程序进行一些控制(例如 Discord 或任何具有缩略图工具栏按钮的应用程序)。我已经尝试 google、搜索或只是查看文档。在 python 中有什么方法可以做到这一点吗? (Screenshot of what I want to control.)
我认为没有办法访问工具栏,当然也不能从其他进程访问。
然而,您可以使用 Spy++ 之类的工具在 WM_COMMAND 中查找按钮 ID,然后自己发送消息以执行工具栏按钮单击。这当然是特定于应用程序的,如果应用程序更新,id 可能会更改。
When a thumbnail button is clicked, the application receives a WM_COMMAND message with the high word of the wParam set to THBN_CLICKED and the low word set to the button ID. This message is dispatched to the window to which the thumbnail belongs.