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