this dont work in designer view ....
public partial class FMain : IMasterForm<Familia>
{
public FMain()
{
InitializeComponent();
}
}
but this... is Ok in desginer view! ...
public partial class FMain : Fbase
{
public FMain()
{
InitializeComponent();
}
}
public class Fbase : IMasterForm<Familia>
{
public Fbase() { }
}
i found this answer here: http://madprops.org/blog/Designing-Generic-Forms/
But i Would need to operate it without creating another extra class. Its Possible?