等待直到在记事本中按下回车键
我想在打开的记事本实例中获取先前输入的文本消息,直到按下 ENTER 键(异步)。
也就是说,输入“输入了一些文本 [ENTER]”,然后我想获取字符串“输入了一些文本”(MessageBox.show(sometext);) 请您告诉我如何在不使用全局键盘挂钩?谢谢
I would like to get the previous entered Text message in an open notepad instance until the ENTER key is pressed (asynchronously).
That is, enter "some text is entered [ENTER]" then I like to get the string "some text is entered" (MessageBox.show(sometext);) Would you please offer me an idea of how to do this without use of a global keyboard hook ? Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果键盘挂钩不起作用 - 考虑监视记事本窗口发送/处理的消息。 Visual Studio 工具中的 Spyxx 工具将显示消息(注意匹配 32/64 位才能进行监视)。
请注意,它仍然需要能够在另一个进程中运行 -
我的应用程序如何读取 Windows 消息( WM_SETTEXT) 来自另一个应用程序?,我不建议使用本机代码而不是 C# 来执行此操作。
If keyboard hook does not work - consider spying on the messages sent/handled by the notepad window. Spyxx tool from Visual Studio tools will show messages (note to match 32/64 bit to be able to spy).
Note that it still requires ability to run in another process -
How can my application read windows messages (WM_SETTEXT) from another application? , I would not recommend native code for doing it instead of C#.