更改 ListView 控件中的文本颜色 (Win32)

发布于 2024-10-17 13:29:12 字数 124 浏览 2 评论 0原文

我有一个使用 Win32 C++ 创建的列表视图控件
我正在使用 ListView_SetItem 添加子项目
这只是文本,列表视图处于报告模式。我想更改特定子 Item 的文本颜色。我可以这样做吗?如何
谢谢

I have a List View Control that I have created with Win32 C++
I am adding sub items using ListView_SetItem
This just Text and the List View is in Report Mode. I want to change the colour of the text for a particular sub Item . Can I do this? How
Thanks

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

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

发布评论

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

评论(2

相思碎 2024-10-24 13:29:12

您需要为此子项使用所有者绘制,以便它使用与列表视图的其余部分不同的字体属性。

You'll need to use owner-draw for this sub item so that it uses different font properties than the rest of the list view.

一绘本一梦想 2024-10-24 13:29:12

事实证明,您可以使用 NM_CUSTOMDRAW 来完成此操作,但是您还需要做很多其他事情

这篇文章很好地解释了它 http://www.codeproject.com/script/Articles/ArticleVersion.aspx?aid=2890&av=110402
查找名为 ListView Colors 的部分

It turns out you can do it using NM_CUSTOMDRAW but then you need to do a bunch of other stuff too

This article explains it really well http://www.codeproject.com/script/Articles/ArticleVersion.aspx?aid=2890&av=110402
look for the section called ListView Colors

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