Hi,
how do enable selection of a subItem in a ListView control?
TY
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kirtan PatelPosted Oct 21, 2009, 2:22 PM
or you can simulate selection by changing sub items backgorund color
by following code
listView1.Items[0].UseItemStyleForSubItems = false;
listView1.Items[0].SubItems[0].BackColor = Color.CadetBlue;
if it helped you please check "do you like this answer" please :)