C# Winform窗体应用程序中 继承泛型Form/UserControl 后,设计器无法可视化。
在C# Winform窗体应用程序中,有时我们会继承泛型Form/UserControl ,以达到部分控件或代码可以重用的目的,但这往往会伴随一个不太友好的问题:设计器无法可视化(出现一些异常,在此不一一列举);这会给我们的界面布局带来困扰。 目前,个人觉得最好的就绝办法就是找一个“过渡的对象”,即在要继承的Form/UserControl和被继承的泛型Form/UserControl之间搭个桥,要继承的Form/UserControl继承“过渡的对象”,“过渡的对象”继承泛型Form/UserControl,最终要继承的Form/UserControl在设计器中就可以可视化了。关键代码如下:
泛型Form/UserControl
/// <summary>
/// 承泛型Form/UserControl
/// </summary>
/// <typeparam name="TEntity">实体</typeparam>
/// <typeparam name="TInterface">实体对应接口</typeparam>
public partial class UCBaseGird<TEntity, TInterface> : UserControl
where TEntity : MongoDbEntity, new()
where TInterface : class
{
protected IBaseBll<TEntity> dataBll;
protected UCGridextend<TEntity> dataUC;
protected List<TEntity> dataList;
public UCBaseGird() { }
public UCBaseGird(IBaseBll<TEntity> dataBll, UCGridextend<TEntity> dataUC)
{
InitializeComponent();
//......
}
//......
}
“过渡的对象”
public class UCRoleMdiGird : UCBaseGird<RoleEntity, IRoleBll>
{
public UCRoleMdiGird() { }
public UCRoleMdiGird(IBaseBll<RoleEntity> dataBll, UCGridextend<RoleEntity> dataUC)
: base(dataBll, dataUC)
{ }
}
要继承的Form/UserControl
public partial class UCRoleGird : UCRoleMdiGird {
public UCRoleGird(IBaseBll<RoleEntity> dataBll, UCGridextend<RoleEntity> dataUC) : base(dataBll, dataUC) { InitializeComponent(); //...... } //......
}