Locking Checkboxes in ListView

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

Guest

Hi,

I am working on .NET Windows application and using checkboxes in ListView control. Can I lock these checkboxes so that user cannot mark/check these checkboxes. User should be able to select a row from listview but not mark tick in the checkbox.

Thanks & Regards,
Jyoti
 
One workaround is to use your own icons for each item rather than
checkboxes, therefore they will not be editable by the user (this assumes
you aren't already using icons for your items).

Peter

--
Peter Foot
Windows Embedded MVP
OpenNETCF.org Senior Advisor
www.inthehand.com | www.opennetcf.org

Jyoti Mahna said:
Hi,

I am working on .NET Windows application and using checkboxes in ListView
control. Can I lock these checkboxes so that user cannot mark/check these
checkboxes. User should be able to select a row from listview but not mark
tick in the checkbox.
 
Back
Top