I have created a custom control in C# with VS 2010 that is based (inherits) from the RectangleShape
control that comes with VS 2010 but I can't see it in VS 2010 Tool Box. Why it is not there?
public partial class StepControl : Microsoft.VisualBasic.PowerPacks.RectangleShape
{
public StepControl()
{
InitializeComponent();
}
protected override void OnPaint(PaintEventArgs pe)
{
base.OnPaint(pe);
}
}