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

I am trying to have a base Windows Form which holds common functionality and controls - but also holds acesses a class which requires a type for it's methods. Each form will represent a different type so I thought that I could do something along the lines of this:

public partial class Base<T> : Form where T : BaseClass
{
  private GenericHandler handler = new GenericHandler();
}
public class BaseClass { }
public class GenericHandler
{
  public void DoSomethingWithInstance<T>(T instance) where T : BaseClass
  {

  }
}

My designer class declaration also mirrors what my form has. Now when I do my second form which represents the type Foo I can't access the designer because I get this error:

The designer could not be shown for this file because none of the classes within it can be designed. The designer inspected the following classes in the file: Foo --- The base class 'WindowsFormsApplication1.Base' could not be loaded. Ensure the assembly has been referenced and that all projects have been built.

FooClass --- The base class 'WindowsFormsApplication1.BaseClass' cannot be designed.

public partial class Foo : Base<FooClass>
{
  public Foo()
  {
    InitializeComponent();
  }
}
public class FooClass : BaseClass { }

Could anybody explain why this happens/what I am doing wrong or any other methods to do this?

Thanks in advance.

share|improve this question
Not an explanation, but note that you can (and I do) work around the issue by not having a generic base class, but by having an intermediate base class that itself derives from a generic class: Foo : FooBase, FooBase : Base<FooClass>. There is nothing at all in the definition of FooBase other than its base. – hvd Nov 12 '12 at 15:05
@hvd this works a treat. I'd accept it as an answer but it's a comment. – LukeHennerley Nov 12 '12 at 15:10
I posted it as a comment because it doesn't answer the question you asked; I think you shouldn't accept it. Even if the question you asked may no longer matter to you :) – hvd Nov 12 '12 at 17:05

1 Answer

up vote 7 down vote accepted

When a Windows Form or a user UserControl is loaded in the designer what basically happens is that the designer is creating an instance of the base class (that class that your custom form or control directly derives from) and then executes the InitializeComponents() method manually/explicitly through reflection to build up the intended design of your control.

In your case however it can not create an instance of the base class because it a has a generic parameter. The same thing happens if the base class of your form or your control is abstract or does not have a default constructor. In those cases the designer will also not be able to create an instance of your base class.

There is a workaround for this using the TypeDescriptionProviderAttribute where you can give the designer a replacement class that it should instanciate instead.

share|improve this answer
Although you answer explains why it doesn't work - I can't understand how you can't instantiate a generic parameter class when if you had Public Class GenericClass<T> { } you could infact do GenericClass<T> gc = new GenericClass<T>(); so why can't the initialize components handle this? Is that down to the designer not knowing what type to use in the instansiation? – LukeHennerley Nov 12 '12 at 14:53
T must be resoved to a concrete class, so no, you can't do GenericClass<T> gc = new GenericClass<T>(); – bitbonk Nov 12 '12 at 14:56
Sorry let me re-phrase that GenericClass<Foo> gc = new GenericClass<Foo>(); you could for arguments sake do that so because I am passing FooClass as the type to the base form I would of thought it could potentially drop that in during initialize component. Is there ANY way you could suggest how I might be able to get the designer loading doing something along my lines? – LukeHennerley Nov 12 '12 at 15:01
See the example (pocketsilicon.com/…) in the workaround article of my answer. – bitbonk Nov 12 '12 at 15:16
Thanks for this - I understand why I couldn't do it now. I did however use the comment to solve my issue, but you answered my question as to why. – LukeHennerley Nov 12 '12 at 17:14

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.