更改 ListView 控件中的文本颜色 (Win32)
我有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要为此子项使用所有者绘制,以便它使用与列表视图的其余部分不同的字体属性。
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.
事实证明,您可以使用 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