Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ExperimentViewPage.cs @ 7939

Last change on this file since 7939 was 7939, checked in by spimming, 12 years ago

#1807:

  • wizard page to view generated experiments
  • generate experiments according to example
  • plugin frame adapted
  • new version of problem view dialog included
File size: 705 bytes
Line 
1using System.ComponentModel;
2
3namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
4  public partial class ExperimentViewPage : HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPage {
5    private DataAnalysisWizardContext context;
6    public DataAnalysisWizardContext Context {
7      get { return context; }
8    }
9
10    public ExperimentViewPage(DataAnalysisWizardContext context) {
11      InitializeComponent();
12      this.context = context;
13
14    }
15
16    private void ExperimentViewPage_SetActive(object sender, CancelEventArgs e) {
17      experimentListView.Content = context.Experiment;
18      SetWizardButton(Wizard.WizardButtons.None);
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.