Ejemplo n.º 1
0
 private void HideExecutedCommandLabel()
 {
     ExecutedCommandLabel.Invoke((MethodInvoker)(() =>
     {
         ExecutedCommandLabel.Hide();
     }));
 }
Ejemplo n.º 2
0
 private void DisplayExecutedCommand(String commandName)
 {
     ExecutedCommandLabel.Invoke((MethodInvoker)(() =>
     {
         ExecutedCommandLabel.Text = commandName;
         ExecutedCommandLabel.Show();
     }));
     commandWasDisplayed = true;
 }