I have a business object with a bound field that I display in a form. The field value is populated in code (as a default value for the BO) so the user should not be able to change it although they do need to see itBy defult, when editing, the control becomes enabled. I have remedied this by implementing the EditingStateChanged event on the BO instance on my form and explicitly setting the UI control.Enabled to false
Question is: this works but is there a better way to do this?