Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将键发送到另一个窗口,然后按回车键。我曾尝试在谷歌上进行研究,但没有发现运气。谢谢你的帮助。
SendKeys(...)只发送到活动窗口,所以你不能用Enter键使用它。
SendKeys(...)
PostMessage(...)您可以尝试使用WM_KEYDOWNand进行 P/Invoking WM_KEYUP。
PostMessage(...)
WM_KEYDOWN
WM_KEYUP