示例#1
0
 public Calibrator(GUIs.Start start)
 {
     GuiThatwillBeClosed = start;
     InitializeComponent();
 }
示例#2
0
 //closes this gui and returns it to menu
 private void returnToMenuToolStripMenuItem_Click(object sender, EventArgs e)
 {
     GuiThatwillBeClosed.Show();
     GuiThatwillBeClosed = new GUIs.Start();
     this.Close();
 }