Example #1
0
 private void instructionsButton_Click(object sender, EventArgs e)
 {
     if (instructionsButton.Checked)
     {
         HelpPagesController.showInstructions();
         instructionsButton.Checked = false;
     }
 }
Example #2
0
 private void FormMain_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.Control && e.KeyCode == Keys.R) // Ctrl+R - roda teste
     {
         ExpositionController.BeginStroopTest(executingNameLabel.Text, participantComboBox.Text, markTextBox.Text[0], this);
     }
     if (e.Control && e.KeyCode == Keys.D) // Ctrl+D - define programa
     {
         defineTest();
     }
     if (e.Control && e.KeyCode == Keys.N) // Ctrl+N - novo programa
     {
         newProgram();
     }
     if (e.Control && e.KeyCode == Keys.H) // Ctrl+H - intruções / ajuda
     {
         HelpPagesController.showInstructions();
     }
 }
Example #3
0
 private void instructionsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     HelpPagesController.showInstructions();
 }