Example #1
0
 private void TwoDicePigRadioButton_CheckedChanged(object sender, EventArgs e)
 {
     if (TwoDicePigRadioButton.Checked)
     {
         Pig_With_Two_Dice_Form GameForm1 = new Pig_With_Two_Dice_Form();
         GameForm1.Show();
         TwoDicePigRadioButton.Checked = false;
     }
 }
        private void Two_Dice_Pig_radioButton2_CheckedChanged(object sender, EventArgs e)
        {
            Pig_With_Two_Dice_Form twodice = new Pig_With_Two_Dice_Form();

            if (Two_Dice_Pig_radioButton2.Checked)
            {
                twodice.Show();
            }
        }