예제 #1
0
파일: Form1.cs 프로젝트: jonkaz1/EyeTracker
 private void HideExecutedCommandLabel()
 {
     ExecutedCommandLabel.Invoke((MethodInvoker)(() =>
     {
         ExecutedCommandLabel.Hide();
     }));
 }
예제 #2
0
파일: Form1.cs 프로젝트: jonkaz1/EyeTracker
 private void DisplayExecutedCommand(String commandName)
 {
     ExecutedCommandLabel.Invoke((MethodInvoker)(() =>
     {
         ExecutedCommandLabel.Text = commandName;
         ExecutedCommandLabel.Show();
     }));
     commandWasDisplayed = true;
 }