Readonly property in DataGrid

  • Thread starter Thread starter James Wong
  • Start date Start date
J

James Wong

Dear all,

I found that there's no Readonly property in DataGrid under .NET Compact
Framework 1.1. I'd like to know how I can make my DataGrid readonly in
runtime. I'm developing an application for pocket PC.

Thanks for your attention and kindly advice!

Regards,
James Wong
 
Since the DataGrid doesn't support in-place editing it is effectively
read-only unless you write custom code to allow editing (either using a
separate form or by floating controls over the grid to simulate in-place
editing).

Peter
 
Back
Top