0

how can I set or change "background color" of selected item in objestlistview? Basically, how I can get rid of the blue color in the background of text?

enter image description here

Thank you for any answers.

  • This [link](http://stackoverflow.com/questions/5179664/how-to-change-listview-selected-row-backcolor-even-when-focus-on-another-control) is going to solve explicitly your problem. –  Apr 05 '16 at 23:36
  • @siadynamic: No, he is talking about a custom control *ObjectListView*. – Rev Apr 06 '16 at 06:05

1 Answers1

0

Judging from the picture you use translucent selections:

objectListView1.UseTranslucentSelection = true;

You also have to set

objectListView1.OwnerDraw = true;

to get rid of the dark blue selection color.

Rev
  • 5,827
  • 4
  • 27
  • 51