G
Guest
Hi,
Check the following code:
public class Foo : TestControl
{
}
public abstract class TestControl : System.Windows.Forms.Control
{
}
The Visual Studio designer cannot load Foo because it will try to create the
abstract class TestControl while it should only be dealing with Foo. Why is
that? Can I fix this?
Check the following code:
public class Foo : TestControl
{
}
public abstract class TestControl : System.Windows.Forms.Control
{
}
The Visual Studio designer cannot load Foo because it will try to create the
abstract class TestControl while it should only be dealing with Foo. Why is
that? Can I fix this?