I need to have a class derived from ComboBox that will only accept Objects of some specific type. So, I need to have a generic ComboBox. If I declare a new class like this:
public class GComboBox <Type> : ComboBox
{
// Some code
}
then GComboBox
will not appear in the toolbox of Windows Form. How do I make it appear in the toolbox so that I can put it there as I would be able to put any other derived non-generic ComboBox?