等待直到在记事本中按下回车键

发布于 2024-12-21 14:54:38 字数 149 浏览 1 评论 0原文

我想在打开的记事本实例中获取先前输入的文本消息,直到按下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生一个溪 2024-12-28 14:54:38

如果键盘挂钩不起作用 - 考虑监视记事本窗口发送/处理的消息。 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#.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文