Esempio n. 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            this.name = this.txtName.Text;
            BestTime bst = new BestTime();

            bst.Show();
            this.Close();
        }
Esempio n. 2
0
 public BestTimesInfo()
 {
     Beginner     = new BestTime();
     Intermediate = new BestTime();
     Expert       = new BestTime();
 }
Esempio n. 3
0
        private void mnuBestTime_Click(object sender, EventArgs e)
        {
            BestTime bstDlg = new BestTime();

            bstDlg.Show();
        }