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.
我需要在运行时更改列表控件的字体,以便使用固定宽度的字体。我已经看到了一些建议我应该捕获 NM_CUSTOMDRAW 消息的示例,但我想知道是否有更好的方法来做到这一点。
谢谢。
创建一个适当的 CFont 对象,并通过调用 SetFont() 设置控件的字体,传入 CFont,如下所示:
m_font.CreatePointFont(90,"Courier New"); m_listCtrl.SetFont(&m_font);
这假设您有一个带有“CFont m_font”成员的窗口或对话框对象,以及附加到列表控件的“m_listCtrl”成员。