up vote 0 down vote favorite
share [g+] share [fb]

I'd like to change the BackgroundColor of a ListViewSubItem in a ListView in Windows Mobile. I'm using the Compact Framework ListView, whose ListViewItems only allow setting the BackColor on the entire row, which I don't want.

I have two questions:

  1. Is this possible?
  2. If this is possible, I know I have to P/Invoke to get this to work (because ListView.ListViewSubItem only offers a Text property), or send the right Windows message. What's the right function to call, or the right message to send?

Even just a pointer in the right direction would be appreciated.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Christian Helle shows how to custom draw CF ListViews here.

link|improve this answer
feedback

My guess is that you need to draw the list view item yourself; use the default painting for the main item and do what you want for the subitem, MSDN example here, or something like that.

link|improve this answer
feedback

try to enable owner-draw true.. and set your own colour at drawingitem.. you wil get bounds.. draw your own colour

link|improve this answer
Technically the ListView in CE would be custom drawn, not owner drawn, and the CF ListView doesn't support either one. – ctacke Sep 29 '09 at 13:40
yes.. you are exactly right, if you are using custom drawn then set owner-draw propertie true, and draw corresponding cell color there. for more info see this controle you can use this controle code.msdn.microsoft.com/uiframework/Release/… – LLL Sep 29 '09 at 15:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.