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.
我想在工具提示中显示一些鼠标事件信息。看起来像:
Win1 : x = 100; y = 99; dx = 655; dy = 1789; Win2 : x = 2396; y = 133; dx = 78; dy = 111; .... ....
即使我使用%4d和其他东西来格式化文本,它也不会像上面那样给出完美的结果。有没有办法在工具提示中以上述格式显示数据?我只能想象可以使用固定宽度的字体,但我不知道如何更改工具提示中的字体。
%4d
您需要获取工具提示窗口的句柄。然后你可以向它发送一个带有句柄的WM_SETFONT消息到一个固定宽度的字体。