Currently I have most of my form\'s controls disabled at launch because you cannot use them until a file is loaded. However, once the file is loaded the controls should beco
Do this:
var Enable = (Control c) => { c.Enabled = true; if(c.Controls != null) foreach(Control c2 in c.Controls) Enable(c2); } Enable(YourForm);