如何在Listview中设置颜色
如何在子项中设置颜色...
Listview
Listview1.Item(1).SubItems(2) 'I want ot make color on this column
如何执行此操作。
How to make a color in subitem...
Listview
Listview1.Item(1).SubItems(2) 'I want ot make color on this column
How to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下代码将满足您的要求(
intCol
是您需要更改颜色的从零开始的列):用法:
注意我使用了 来自 VBForums 的代码 作为此代码段的基础,并将其扩展为使用列号
The following code will do what you require (
intCol
is the zero based column you require the colour to be changed for):Usage:
Note I used the code from VBForums as the basis for this snippet and extended it to use a column number