Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ProblemDataViewPage.cs @ 7824

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

#1807:

  • added new wizard pages
  • removed AssemblyInfo files and replaced them with frame file
  • disable buttons when wizardbuttons set to 'none'
  • introduce data analysis context class
File size: 831 bytes
Line 
1
2namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
3  public partial class ProblemDataViewPage : HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPage {
4    private DataAnalysisWizardContext context;
5    public DataAnalysisWizardContext Context {
6      get { return context; }
7    }
8
9    public ProblemDataViewPage(DataAnalysisWizardContext context) {
10      InitializeComponent();
11      this.context = context;
12    }
13
14    private void ProblemDataViewPage_WizardNext(object sender, Wizard.WizardPageEventArgs e) {
15
16    }
17
18    private void ProblemDataViewPage_SetActive(object sender, System.ComponentModel.CancelEventArgs e) {
19      stringConvertibleMatrixView.Content = Context.Problem.ProblemData.Dataset;
20      SetWizardButton(Wizard.WizardButtons.Next);
21    }
22  }
23}
Note: See TracBrowser for help on using the repository browser.