How to change Listview item Backcolor

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I am writing an PPC 2003 Application in which i want to change the back
color of some selected listview items.

This can be done with just this line in windows Framework
listView1.Items[1].BackColor = Color.Green;

Can some one tell me how i can do it in Compact Frame work.

Thanks,
Rayudu
 
The device control doesn't support setting BackColor for individual items.
You will need to write a custom control for this functionality, or locate a
third-party one. ListView2 in the SDF may help (www.opennetcf.org/sdf/).

Peter
 
Back
Top