コード例 #1
0
ファイル: FormAudioConfig.cs プロジェクト: surejm/StroopTest
        private void helpButton_Click(object sender, EventArgs e)
        {
            FormInstructions infoBox = new FormInstructions(instructionsText);

            try { infoBox.Show(); }
            catch (Exception ex) { MessageBox.Show(ex.Message); }
        }
コード例 #2
0
        private void viewHelpToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormInstructions infoBox = new FormInstructions(helpText);

            try { infoBox.Show(); }
            catch (Exception ex) { MessageBox.Show(ex.Message); }
        }
コード例 #3
0
        private void showInstructions()
        {
            FormInstructions infoBox = new FormInstructions(instructionsText, (testFilesPath + instructionsFileName));

            try { infoBox.Show(); }
            catch (Exception ex) { MessageBox.Show(ex.Message); }
        }
コード例 #4
0
        private void techInfoButto_ToolStrip_Click(object sender, EventArgs e)
        {
            FormInstructions infoBox = new FormInstructions(techText);

            try { infoBox.Show(); }
            catch (Exception ex) { MessageBox.Show(ex.Message); }
        }
コード例 #5
0
ファイル: FormNewAudio.cs プロジェクト: surejm/StroopTest
        private void helpButton_Click(object sender, EventArgs e)
        {
            FormInstructions infoBox = new FormInstructions(instructionsText);

            infoBox.Show();
        }