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.
Foo : FooBase,FooBase : Base<FooClass>. There is nothing at all in the definition ofFooBaseother than its base. – hvd Nov 12 '12 at 15:05