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.
在我的 MFC 应用程序中,当我调用 CComboBox::ShowDropDown() 时,鼠标光标被隐藏,直到与组合框的交互完成(当组合框失去焦点时。)当鼠标移动时它不会重新出现,就像它一样带有编辑框。
如何让鼠标光标不被隐藏?
称呼
SetCursor(LoadCursor(NULL, IDC_ARROW));
在 ShowDropDown() 调用之后立即。