c# alternative to abstract

.net, c#

Solution

I would create an interface so that every form would implement it. Could you detail a bit more your problem?

Problem

How can I force derived forms to implement methods of a base class without making it abstract? The error I receive is "The designer must create an instance of type 'X' but it cannot because the type is declared as abstract". Thank you in advance.

Original source