如何获得文本框焦点通知?

发布于 2024-12-27 23:00:12 字数 206 浏览 1 评论 0原文

使用 Windows 7 触摸设备 当您点击/聚焦文本框或某种输入字段(记事本等)时,Windows 会显示这个小触摸键盘指示器(点击该指示器将调出触摸屏键盘)。

我想编写一个应用程序,在发生这种情况时收到通知,文本框(等)获得焦点(无论哪个应用程序)。

应用程序是否被告知关注其他应用程序,我是否需要挂钩某些东西?

有没有办法在 C++ 中这样做?

Using a Windows 7 touch device Windows shows this little touch-keyboard indicator (tabing this will bring up the touch on screen keyboard) when you tab/focus a textbox or kind of input field (Notepad etc.).

I want to write an application that gets notified when exactly that happens, a textbox (etc.) gets focused (no matter which application).

Are applications informed about focusing in other applications, do I need to hook something?

Is there a way in doing so in c++?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

东京女 2025-01-03 23:00:12

我相信 SetWinEventHook 函数,特别是 EVENT_OBJECT_FOCUS 事件就是您要寻找的。

来自MSDN的描述:

某个对象已获得键盘焦点。系统为以下用户界面元素发送此事件:列表视图控件、菜单栏、弹出菜单、切换窗口、选项卡控件、树视图控件和窗口对象。服务器应用程序为其可访问对象发送此事件。

WinEventProc回调函数的hwnd参数标识接收键盘焦点的窗口。

I believe the SetWinEventHook function and specifically the EVENT_OBJECT_FOCUS event is what you are looking for.

From the MSDN description:

An object has received the keyboard focus. The system sends this event for the following user interface elements: list-view control, menu bar, pop-up menu, switch window, tab control, tree view control, and window object. Server applications send this event for their accessible objects.

The hwnd parameter of the WinEventProc callback function identifies the window that receives the keyboard focus.

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