在 vb.net 中的窗口仍处于最小化状态时将击键发送到窗口
我以前懂vb6,需要快速应用。我希望有人能帮助我如何将密钥发送到 vb.net 中的最小化窗口,
谢谢
I used to know vb6 and I need to make a quick application. I hope someone can help me with how to send keys to a minimized window in vb.net
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常你可以使用
SendMessage
API 函数发送密钥,但我不确定窗口最小化是否会受到任何影响,我不这么认为,但我没有尝试过.要使用 VB.Net 中的 Windows API 函数,您需要使用 PInvoke 来调用它,您可以在此 页面。
SendMessage 的 MSDN 页面也可能是对于有关其工作原理的信息很有用。
顺便说一句,您可能想使用
WM_CHAR
消息,即0x0102
。Normally you can send keys with the
SendMessage
API function, but I'm not sure if it would be affected in any way by the window being minimized, I don't think so but I haven't tried.To use a Windows API function from VB.Net you need to use PInvoke to call it, you can find information about how to do that on this page.
The MSDN page for SendMessage might also be useful for information about how it works.
Btw, you probably want to use the
WM_CHAR
message which is0x0102
.使用 SendKeys
http://msdn.microsoft.com/en -us/library/system.windows.forms.sendkeys.aspx
Use SendKeys
http://msdn.microsoft.com/en-us/library/system.windows.forms.sendkeys.aspx