在 C# 中创建/发布输入事件
是否可以在 C# 中以编程方式创建输入事件。
我希望能够模拟任何输入,例如按键盘上的按钮或从应用程序中移动鼠标指针。应用程序生成的事件的行为方式(最好)与实际按键的行为完全相同(将事件发布到供应用程序处理的系统事件队列)。
经过一个小时的谷歌搜索后,我似乎无法找到任何有关从 C# 代码执行此操作的文档。
一如既往,任何答案都将不胜感激。
Is it possible to programmatically create input events in c#.
I want to be able to simulate any input, such as pressing a button on the keyboard or moving the mouse pointer from my application. The events generated by the application need to behave (preferably) in exactly the same way that an actual key press for instance does (post an event to the system event queue that is given for applications to process).
I seem to be unable to find any documentation about doing this from c# code after googling for an hour.
As always, any answers will be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试
SendKeys
用于键盘输入。为了获得更多控制和鼠标事件,您应该 P/invokeSendInput()
。请注意,这很难做到正确,您可能会发现其他方法更合适。
You can try
SendKeys
for keyboard input. For more control, and mouse events too, you should P/invokeSendInput()
.Be warned that this is difficult to get right and you may find alternative approaches more amenable.