Example #1
0
 public WorkspaceForm()
 {
     this.Workspace = new Testing.Workspace(this);
     this.ReportErrorDelegate = new ReportErrorDelegateDefinition(this.ReportError);
     this.ReportResultDelegate = new ReportResultDelegateDefinition(this.ReportResult);
     this.InstallSourceCodeDelegate = new InstallSourceCodeDelegateDefinition(this.GetInstallSourceCode);
     this.EvaluateSourceCodeDelegate = new EvaluateSourceCodeDelegateDefinition(this.GetEvaluateSourceCode);
     InitializeComponent();
     this.TabPageChanged();
 }
Example #2
0
 private void newEnvironmentToolStripMenuItem_Click(object sender, EventArgs e)
 {
     this.Workspace = new Workspace(this);
     this.listErrors.Items.Clear();
     this.txtResult.Text = null;
 }