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.
我想在 C 中监视窗口(HWND)的创建。
我想知道WINAPI是否提供了某种事件来处理窗口的创建。
如果您只关心顶级窗口,您可以使用SetWindowHookEx注册 aShellProc并监视HSHELL_WINDOWCREATED. 如果您需要任何窗口创建的通知,您可以使用 aCallWndProc并监视WM_CREATE消息。
SetWindowHookEx
ShellProc
HSHELL_WINDOWCREATED
CallWndProc
WM_CREATE