コード例 #1
0
ファイル: Instructions.cs プロジェクト: sashkooooy/MyRepo
 private void button1_Click(object sender, EventArgs e)
 {
     Hide();
     StartingScreen ss = new StartingScreen();
     ss.ShowDialog();
     Close();
 }
コード例 #2
0
 private void SaveButton_Click(object sender, EventArgs e)
 {
     Hide();
     StartingScreen ss = new StartingScreen();
     finalCategory = this.category;
     ss.ShowDialog();
     Close();
 }
コード例 #3
0
        private void button1_Click(object sender, EventArgs e)
        {
            Hide();
            StartingScreen ss = new StartingScreen();

            ss.ShowDialog();
            Close();
        }
コード例 #4
0
        private void SaveButton_Click(object sender, EventArgs e)
        {
            Hide();
            StartingScreen ss = new StartingScreen();

            finalCategory = this.category;
            ss.ShowDialog();
            Close();
        }
コード例 #5
0
ファイル: Paduin.cs プロジェクト: sMustafov/OOPGameProject
        private void SaveButton_Click(object sender, EventArgs e)
        {
            Hide();
            StartingScreen ss = new StartingScreen();

            FinalPaduinCharacter = this.paduinCharacter;
            ss.ShowDialog();
            Close();
        }