Beispiel #1
0
 private void InstructionsButton_Click(object sender, EventArgs e)
 {
     Hide();
     Instructions instructions = new Instructions();
     instructions.ShowDialog();
     Close();
 }
        private void InstructionsButton_Click(object sender, EventArgs e)
        {
            Hide();
            Instructions instructions = new Instructions();

            instructions.ShowDialog();
            Close();
        }
Beispiel #3
0
        //Click event for the instructions button.
        private void btnInstructions_Click(object sender, EventArgs e)
        {
            //Creates a new instructions instance.
            Instructions Instructions = new Instructions();

            //Shows the instructions form.
            Instructions.ShowDialog();
        }