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

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

            bstDlg.Show();
        }