Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When you load an UserControl in the WinForm designer, VisualStudio executes the InitializeComponent() method of the control, but not its constructor. This really makes a difference because it's quite common to have some code in the constructor which cannot run at design time.

Unfortunately, when you add an UserControl to another control, VisualStudio runs the InitializeComponent() method of the parent control, which calls the constructors of the child controls, and if you've got an exception in those constructors, you're stucked.

How do you deal with this problem?

share|improve this question
How would Visual Studio call InitialiseComponent without constructing an instance. The constructor is guaranteed to be called before InitialiseComponent is. – Ray Booysen Jan 26 '09 at 16:17
just try it : create a blank form, and add "throw new Exception()" at the very first line of the constructor (that is, before the call to Initializecomponent). You'll see that the winform designer can still load the form. – Brann Jan 26 '09 at 16:26

4 Answers

wrap the runtime only parts with:

If Not me.DesignMode Then
  'Runtime only here
End If
share|improve this answer
Caveat: DesignMode does not work properly in child controls. dotnetjunkies.com/WebLog/mjordan/archive/2003/12/01/4117.aspx – Robert Venables Jan 26 '09 at 18:06
Also, when you start debugging your program, it seems the code inside the "!this.DesignMode" section executes in your program (as expected), but also in the designer! – Brann Jan 27 '09 at 9:02

Why not use the OnLoadEvent in this scenario?

share|improve this answer

The workaround I'm using is to put my runtime initialization code in an InitializeRuntime() method, which I recursively call from the toplevel constructor. This solves the problem, but I always have to remember to add the call to InitializeRuntime() for every single UserControl I add instead of just drag'n'dropping the component using the designer.

share|improve this answer

I found a solution in CodeProject that works for me:

if (System.ComponentModel.LicenseManager.UsageMode != 
    System.ComponentModel.LicenseUsageMode.Designtime)
{
    // Runtime only here
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.