使用 python 将一些按键发送到非活动窗口

问题描述 投票:0回答:3

我正在尝试使用 Python 将一些密钥发送到非活动窗口/进程/程序 (Win32/64)。已经阅读了

pywinauto
SendKeys
,但它们都在发送密钥之前激活窗口。

有什么方法可以在不激活非活动窗口的情况下使用它吗?

如果有人发布一个简单的示例/片段,那就太好了。

python windows key send sendkeys
3个回答
41
投票

这是一篇非常老的帖子,但这里还没有答案,我一直在寻找与此完全相同的东西,我花了 6 个小时浏览 Stackoverflow,最后只是阅读了所有 C 文档,因为它更有用。

#you will need the win32 libraries for this snippet of code to work, Links below
import win32gui
import win32con
import win32api
from time import sleep

#[hwnd] No matter what people tell you, this is the handle meaning unique ID, 
#["Notepad"] This is the application main/parent name, an easy way to check for examples is in Task Manager
#["test - Notepad"] This is the application sub/child name, an easy way to check for examples is in Task Manager clicking dropdown arrow
#hwndMain = win32gui.FindWindow("Notepad", "test - Notepad") this returns the main/parent Unique ID
hwndMain = win32gui.FindWindow("Notepad", "test - Notepad")

#["hwndMain"] this is the main/parent Unique ID used to get the sub/child Unique ID
#[win32con.GW_CHILD] I havent tested it full, but this DOES get a sub/child Unique ID, if there are multiple you'd have too loop through it, or look for other documention, or i may edit this at some point ;)
#hwndChild = win32gui.GetWindow(hwndMain, win32con.GW_CHILD) this returns the sub/child Unique ID
hwndChild = win32gui.GetWindow(hwndMain, win32con.GW_CHILD)

#print(hwndMain) #you can use this to see main/parent Unique ID
#print(hwndChild)  #you can use this to see sub/child Unique ID

#While(True) Will always run and continue to run indefinitely
while(True):
    #[hwndChild] this is the Unique ID of the sub/child application/proccess
    #[win32con.WM_CHAR] This sets what PostMessage Expects for input theres KeyDown and KeyUp as well
    #[0x44] hex code for D
    #[0]No clue, good luck!
    #temp = win32api.PostMessage(hwndChild, win32con.WM_CHAR, 0x44, 0) returns key sent
    temp = win32api.PostMessage(hwndChild, win32con.WM_CHAR, 0x44, 0)

    #print(temp) prints the returned value of temp, into the console
    print(temp)
    #sleep(1) this waits 1 second before looping through again
    sleep(1)

我看过很多帖子都可以使用

hwndEdit = win32gui.FindWindowEx(hwndMain, hwndChild, "Edit", "test - Notepad");

但我永远无法弄清楚。除此之外,微软网站上的所有文档都含糊不清,所以我添加了我自己的理解方式。

这应该可以帮助您入门,也应该对其他人有所帮助。如果其他人有修改,请告诉我。

Win32 Python 库


0
投票

上面 mmsvsbg / Lithian Coth 编写的漂亮代码非常棒。 我确认它可以在我的 Windows 10(64 位)Intel i7 上运行。 将 win32gui(现在称为 pywin32)编译成 64 位以及其他一些小事情需要花费一些时间,但是是可行的。 对于需要了解通过 mmsvsbg/Lithian 运行代码的分步说明的人们,我在这里详细介绍了: https://forums.whirlpool.net.au/thread/3nkwl0k9?p=-1#bottom

更快的替代方法是您可以使用已经编写的库来执行相同甚至更多操作:它称为 pywinauto: https://pywinauto.github.io/

Pywinauto pywinauto 是一个用纯 Python 编写的 GUI 自动化库,专为 Windows GUI 开发。最简单的是,它允许您将鼠标和键盘操作发送到 Windows 和 Linux 上的对话框和控件,而到目前为止仅在 Windows 上支持更复杂的基于文本的操作(Linux AT-SPI 支持正在开发中)。

pywinauto 0.6.0(10 月 31 日)和 0.6.1(2 月 8 日) 此重大版本引入了 MS UI 自动化 (UIA) 支持(WinForms、WPF、Qt、浏览器、商店应用程序等)。 现在,文档是在 ReadTheDocs 上持续构建的。另请参阅我们改进的入门指南 现在可以在任何窗口上下文之外使用模块键盘和鼠标。而且它们也可以在 Linux 上运行! 多后端架构允许添加新平台支持。只需实现两个类并注册您的后端即可! 代码风格更接近 PEP8:ClickInput -> click_input。尽管 backend='win32' 与 pywinauto 0.5.4 向后兼容约 80%。 win32_hooks 模块的初始实现。键盘事件(又名热键)和鼠标操作处理程序可以在系统中注册。示例:hook_and_listen.py.


0
投票

在大多数情况下,background消息比仅仅

FindWindow
PostMessage
更棘手,有时还需要
keybd_event
SendMessage
。只是一些注意事项:

基本按键,包括 Enter:
还没有找到忽略它们的应用程序。
有时有必要选择正确的句柄(例如,Notepad++ 仅对嵌套句柄做出反应)。
WM_KEYUP 和 WM_KEYDOWN 通常会产生两次字母,但 VK_RETURN 仅产生一次。 有些应用程序(例如 Chrome)可以在后台运行,但需要非常具体的设置。
Ctrl 热键:
Chrome 在没有焦点的情况下忽略,记事本和 Firefox 同时与另一个焦点窗口做出反应。
Excel 执行某些操作,但不执行热键。 Firefox 在聚焦时会忽略相同的命令。
鼠标点击:
还没有发现任何程序忽略

PostMessage

这非常不一致,以至于我曾经专门为这些实验做了一个测试脚本,在每个特定用例下进行检查可能会非常有帮助

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.