I have some logic that populates UI controls with values from App.config. A
couple of checkboxes get checked or unchecked; and items loaded into a
checked list box.
Two reasonable places to put this code:
1. the form's constructor (or in a method called from within the
constructor)
2. the Form_Load event procedure
What are the important considerations or tradeoffs entailed by those two
choices?
Thanks.
couple of checkboxes get checked or unchecked; and items loaded into a
checked list box.
Two reasonable places to put this code:
1. the form's constructor (or in a method called from within the
constructor)
2. the Form_Load event procedure
What are the important considerations or tradeoffs entailed by those two
choices?
Thanks.
Comment