我有一个非常基本的“基础”用户控件,其中包含一些添加的属性。当我从基本usercontrol继承并在设计器中添加一些按钮时,一切似乎都很好。但是当我构建我的项目时,我的所有按钮都会消失,布局会恢复到原来的基本用户控件。我在这里做错了什么?
public partial class BaseUserControl : UserControl
{
public BaseUserControl()
{
InitializeComponents();
}
public bool CanClose
{
get;
set;
}
}
public partial class InheritedUserControl : BaseUserControl
{
public InheritedUserControl()
{
InitializeComponents();
}
}