MFC CListBox中设置字体类型的简单方法

发布于 2024-08-21 16:14:01 字数 254 浏览 10 评论 0原文

我一直使用默认的 ListBox 控件,并将 OWNER DRAW 属性设置为 NO。但现在我需要设置固定大小的单色字体,因为即使我将默认的右对齐和必要的宽度填充设置为超出数字字符串的实际大小,我的格式化字符串也没有对齐。 我的问题是我不知道为此编码的最简单方法,也没有为 OWNER DRAW 设置为除 NO 之外的任何内容进行编码。 感谢任何输入或示例或链接。 另外,我想了解如何检查运行我的应用程序的系统上有哪些固定单宽字体可用? (C++ MFC、Visual Studio)

I have always used the default ListBox control with the property of OWNER DRAW set to NO. But now I need to set a fixed sized mono font since my formatted strings are not aligning up even though I have the default right aligned and necessary width padding set beyond the actual size of the digit string.
My problem is I don't have a clue the simplest way to code for this nor have I ever coded for OWNER DRAW set to anything other than NO.
Appreciate any input or examples or links.
Additionally would like information on how would I check to even see what fixed mono width fonts are available on the system running my app?
(C++ MFC, Visual Studio)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幸福%小乖 2024-08-28 16:14:01

声明一个 CFont 对象并使用 CFont::CreateFont
“Courier New”通常是固定宽度字体的不错选择。

使用 CListBoxSetFont () 方法(继承自CWnd)来替换默认方法。

Declare a CFont object and init it with CFont::CreateFont.
"Courier New" is usually a good choice for fixed width fonts.

Use CListBox's SetFont() method (inherited from CWnd) to replace the default one.

没有伤那来痛 2024-08-28 16:14:01

不知道CListBox,但是在标准的Windows列表框中,您可以使用WM_SETFONT消息来设置控件的字体。 CListBox可能包装了本机列表框,因此如果您可以获得CListBox的HWND,那么使用WM_SETFONT设置它的字体应该很容易。

Don't know about CListBox, but in the standard Windows listbox, you can use the WM_SETFONT message to set the font of the control. CListBox probably wraps the native listbox, so if you can get the HWND of the CListBox, it should be easy to set the font of it using WM_SETFONT.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文