Пример #1
0
 //Repeat the level
 public void repeatLevel(bool colorSetting)
 {
     var nextForm = new ReadAudioForm3(readPhase, lvlStr);
     nextForm.FormClosed += (s, args) => this.Close();
     nextForm.setColorBlind(colorSetting);
     nextForm.Show();
 }
Пример #2
0
        //Repeat the level
        public void repeatLevel(bool colorSetting)
        {
            var nextForm = new ReadAudioForm3(readPhase, lvlStr);

            nextForm.FormClosed += (s, args) => this.Close();
            nextForm.setColorBlind(colorSetting);
            nextForm.Show();
        }
Пример #3
0
 //If it's a new level
 public void newLevel(bool colorSetting)
 {
     //---save progress of the current level by marking, solved
     var nextForm = new ReadAudioForm3(readPhase, updateLevel(lvlStr));
     nextForm.FormClosed += (s, args) => this.Close();
     nextForm.setColorBlind(isColorBlind);
     nextForm.Show();
 }
Пример #4
0
        //If it's a new level
        public void newLevel(bool colorSetting)
        {
            //---save progress of the current level by marking, solved
            var nextForm = new ReadAudioForm3(readPhase, updateLevel(lvlStr));

            nextForm.FormClosed += (s, args) => this.Close();
            nextForm.setColorBlind(isColorBlind);
            nextForm.Show();
        }