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?