private void _btCompile_Click(object sender, System.EventArgs e)
 {
     if (_controller != null)
     {
         _controller.Compile();
     }
 }
Exemple #2
0
        private void EhCompile(object sender, RoutedEventArgs e)
        {
            if (_backgroundCancelControl.ExecutionInProgress)
            {
                return;
            }

            if (_controller != null)
            {
                _controller.Compile();
            }
        }
Exemple #3
0
 public void Compile()
 {
     _scriptController.Compile();
 }