vote up 0 vote down star

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.

flag

56% accept rate

2 Answers

vote up -1 vote down

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

link|flag
Technically the ListView in CE would be custom drawn, not owner drawn, and the CF ListView doesn't support either one. – ctacke Sep 29 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/… – GrabIt Sep 29 at 15:10
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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