Since there is no wizard and if you want to use one form as a base form for other form you can do the following.
Here Form1 will be the base form to Form2, click on the arrow.
Change : Form
using System.Windows.Forms;
namespace MoveToNextControl
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
}
}
To
using System.Windows.Forms;
namespace MoveToNextControl
{
public partial class Form2 : Form1
{
public Form2()
{
InitializeComponent();
}
}
}
Or use export Template