Skip to content

Commit c74fc41

Browse files
committed
adicionando class diagram
1 parent 59f9a25 commit c74fc41

File tree

6 files changed

+8
-16
lines changed

6 files changed

+8
-16
lines changed

StroopTest/ClassDiagram1.cd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<ClassDiagram />

StroopTest/ClassDiagram2.cd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<ClassDiagram />

StroopTest/Models/Experiment/ExperimentTest.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,6 @@ public DateTime ExpositionTime
6060
}
6161
}
6262

63-
public string HeaderOutputFileText
64-
{
65-
get
66-
{
67-
return headerOutputFileText;
68-
}
69-
70-
set
71-
{
72-
headerOutputFileText = value;
73-
}
74-
}
7563

7664
public void writeLineOutput(int currentExposition, Program currentProgram)
7765
{

StroopTest/Views/SpacialRecognitionPages/FormSRConfig.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ private void TestTypeComboBox_Validated(object sender, EventArgs e)
364364

365365
private bool ValidProgramType(int selectedIndex, out string errorMessage)
366366
{
367-
if (selectedIndex >= 0 && selectedIndex <= 1)
367+
if (selectedIndex >= 0 && selectedIndex <= 2)
368368
{
369369
errorMessage = "";
370370
return true;
@@ -381,7 +381,7 @@ private void TestTypeComboBox_Validating(object sender, CancelEventArgs e)
381381
if (!ValidProgramType(testTypeComboBox.SelectedIndex, out errorMsg))
382382
{
383383
e.Cancel = true;
384-
this.errorProvider1.SetError(prgNameTextBox, errorMsg);
384+
this.errorProvider1.SetError(testTypeComboBox, errorMsg);
385385
}
386386

387387
}

StroopTest/Views/SpacialRecognitionPages/SpacialRecognitionExposition.Designer.cs

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

StroopTest/Views/SpacialRecognitionPages/SpacialRecognitionExposition.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ public SpacialRecognitionExposition(string prgName, string participantName, char
6666
ExpositionController.formSecondScreen(this);
6767

6868
InitializeComponent();
69+
this.instructionLabel.Left = (1194 - 695) / 2;
70+
this.instructionLabel.Top = (741 - 524) / 2;
6971

7072
startTime = hour + "_" + minutes + "_" + seconds;
7173
executingTest.ParticipantName = participantName;

0 commit comments

Comments
 (0)