Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用纯 Win32 API,如何获取当前具有焦点的控件的句柄?然后我如何确定它是否是文本框/富文本框?
我正在尝试编写一个小宏键程序,它允许用户使用 RegisterHotKey() 函数注册新的热键。除了我不想在不知道控件是否是文本框的情况下猛烈调用 SetWindowText() 或 SendMessage(hWnd, WM_SETTEXT, 0, TEXT("Something")) 之外,一切都工作正常。
请注意,我想要当前具有焦点的控件的句柄,而不是用户正在处理的整个窗口。