0

我有一个用户控件,它似乎不喜欢我使用带有类型参数的基类。有什么办法解决这个/我错过了什么吗?

public partial class PopupSelector : PopupSelectionControl3<int>
{
    public PopupSelector()
    {
        InitializeComponent();
    }
}

... Plus the designer code ...

public class PopupSelectionControl3<TValue> : XtraUserControl
{
}
4

1 回答 1

0

WinForms 设计器不能很好地处理通用用户控件。

bernhardrusch在这里提供了一个解决方法

public partial class UserControl : UserControlDesignable  {  ... } 

public class UserControlDesignable : BaseUserControl<Someclass> { } 

可以在此处找到有关解决方法的更多详细信息

于 2012-04-26T13:02:13.013 回答