标签:winform style class blog color strong
ListView在View属性为Details的时候它呈现的方式和DataGirdView差不多,它的每一行都是一个ListViewItem,然而每个ListViewItem都有一个BackColor的属性,但是设置了这个属性却没有任何作用。因为是ListView的每一行的样式都继承的父控件的样式所以无法改变。
解决方案:
ListViewItem item; item = new ListViewItem(new string[] { "NAME","" }); item.UseItemStyleForSubItems = false;
只需要将ListView的每一项的UseItemStyleForSubItems属性设置为false就可以了,这下更改每项ListViewItem的BackColor属性就起作用了。
c#winform中如何修改ListView控件每个单元格的颜色,布布扣,bubuko.com
c#winform中如何修改ListView控件每个单元格的颜色
标签:winform style class blog color strong
原文地址:http://www.cnblogs.com/mingjiatang/p/3808765.html