Implementing Read Only view in Winform App

Posted by Refracted Paladin on Stack Overflow See other posts from Stack Overflow or by Refracted Paladin
Published on 2010-03-15T14:06:34Z Indexed on 2010/03/15 14:09 UTC
Read the original article Hit count: 343

Filed under:
|
|
|

I have an in house winform app for viewing, editing, and inserting member data. There are about 40 sepertate form pages that they use to manipulate different portions of the data.

My question is this; What is the best way of implementing a read only view for a form page?

My thoughts were to cycle through the controls setting Enabled = False or leave them be but not allow any data changes(no Save Button etc) unless it is "unlocked".

I am curious how others handle this with WinForm apps?

© Stack Overflow or respective owner

Related posts about winforms

Related posts about .NET