예제 #1
0
파일: Form4.cs 프로젝트: ljuben97/QuizGame
        private void btnQuizTime_Click(object sender, EventArgs e)
        {
            if (txtIme.Text.Length == 0)
            {
                MessageBox.Show("Внесете име во полето!");
                return;
            }

            Form2 form2 = new Form2();
            form2.accept(igrachi, txtIme.Text);
            form2.Show();
        }