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.
如何在将鼠标移到菜单或其他窗口上时跟踪鼠标悬停事件?我试过 TrackMouseEvent,但 Win CE 不支持。还有其他方法吗?
您可以使用 Tooltip 控件:
MSDN 文章关于 WinCE 中的工具提示
或者直接使用 WM_MOUSEMOVE 消息并自己做。使用鼠标消息并不难,因为您可以使用 WindowFromPoint() 函数来了解鼠标悬停在哪个窗口上。