继承自抽象类的用户控件

发布于 2024-11-13 23:29:31 字数 363 浏览 1 评论 0原文

我有一个继承自抽象类的用户控件。基本上看起来是这样的。

class SimpleSlideView : View
{

}

public abstract class View : UserControl
{

}

该项目编译并运行良好。我可以将用户控件(从工具箱中)拖到窗体中,然后它会正确显示在设计器中。但是,如果我尝试在设计器中打开 SimpleSlideView 控件本身,我会收到以下错误:

设计者必须创建一个实例 类型为“Animation.View”,但不能 因为类型被声明为 摘要。

我错过了什么?

I've got a usercontrol that inherits from an abstract class. Basically looks like this.

class SimpleSlideView : View
{

}

public abstract class View : UserControl
{

}

The project compiles and runs fine. I can take the usercontrol (from the toolbox) and drag it into a form and it is displayed in the designer correctly. However, if I try and open the SimpleSlideView control itself in the designer I receive the following error:

The designer must create an instance
of type 'Animation.View' but it cannot
because the type is declared as
abstract.

What have I missed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文