I have a user control and it does not seem to like me using a base class with a type parameter. Is there any way around this/am I missing something?
public partial class PopupSelector : PopupSelectionControl3<int>
{
public PopupSelector()
{
InitializeComponent();
}
}
... Plus the designer code ...
public class PopupSelectionControl3<TValue> : XtraUserControl
{
}