Beispiel #1
0
 public RunCmdWindow()
 {
     InitializeComponent();
     TextBoxCommand.Focus();
     TextBoxCommand.SelectAll();
     Show();
 }
 private void Grid_Loaded(object sender, RoutedEventArgs e)
 {
     transducer = new Transducer();
     transducer.setup(mainWindow, this);
     if (File.Exists(transducer.batchDir + "AUTO.txt"))
     {
         transducer.transduce("AUTO");
     }
     TextBoxCommand.Focus();
 }
 public void ShowCommandLine()
 {
     Height             = 300;
     commandLineVisable = true;
     TextBoxCommand.Focus();
 }