Example #1
0
 private void toLearnButton_Click(object sender, EventArgs e)
 {
     var newForm = new Votes_Form();
     newForm.Show();
     this.Close();
     Application.Exit();
 }
Example #2
0
 private void votesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     var votesForms = new Votes_Form();
     votesForms.Show();
     votesForms.MdiParent = this;
 }