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.
我需要在鼠标钩子程序中更改光标,但找不到方法
如果我用函数更改光标SetSystemCursor,它会改变,但每当它移动到不同的窗口(比如说一个将光标更改为 的窗口IDC_ARROR,IDC_HAND或类似的东西)时,puff,光标再次改变。
SetSystemCursor
IDC_ARROR
IDC_HAND
在我的鼠标钩子程序中,即使我SetCursor在程序开始时调用函数,也没有任何变化。(虽然我不使用函数调用CallNextHook和设置光标位置)。SetCursorPos
SetCursor
CallNextHook
SetCursorPos
我该怎么办,有什么想法吗?