tags:

views:

1622

answers:

1

how do I change the gridlines color in windows.forms.listview

+1  A: 

I dont think there is a way to do it on a listview without overriding the Paint Event. However, if you are able to switch to a gridview you can do it like so:

this.dataGridView1.GridColor = Color.BlueViolet;

REF

cgreeno