public InteractionSelector(MainForm LinkedForm)
 {
     InitializeComponent();
     this.LinkedForm = LinkedForm;
 }
 public ParticleData(MainForm LinkedForm)
 {
     InitializeComponent();
     this.LinkedForm = LinkedForm;
 }
 public WelcomeForm(MainForm LinkedForm)
 {
     InitializeComponent();
     this.LinkedForm = LinkedForm;
 }
 public ParameterEditor(MainForm LinkedForm)
 {
     InitializeComponent();
     this.LinkedForm = LinkedForm;
 }
 /// <summary>
 /// Creates a new simulation wizard with a linked main form
 /// </summary>
 /// <param name="LinkedForm">The main form that this wizard is linked to</param>
 public NewSimulationWizard(MainForm LinkedForm)
 {
     InitializeComponent();
     this.LinkedMainForm = LinkedForm;
 }