Exemplo n.º 1
0
 void mForIncrementStep_KeyDown(Block block, System.Windows.Forms.KeyEventArgs e)
 {
     if (e.KeyCode == System.Windows.Forms.Keys.Tab)
     {
         ForInitializer.SetFocus();
         e.Handled = true;
     }
     if (e.KeyCode == System.Windows.Forms.Keys.Back)
     {
         ForCondition.SetCursorToTheEnd();
         e.Handled = true;
     }
 }