我有一个用户控件,它似乎不喜欢我使用带有类型参数的基类。有什么办法解决这个/我错过了什么吗?
public partial class PopupSelector : PopupSelectionControl3<int>
{
public PopupSelector()
{
InitializeComponent();
}
}
... Plus the designer code ...
public class PopupSelectionControl3<TValue> : XtraUserControl
{
}