Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ProblemDataPage.cs @ 7816

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

#1807:

  • moved banner to wizardpage
  • set dock style when setting active page
  • set content in problem view
File size: 547 bytes
Line 
1using System.ComponentModel;
2using HeuristicLab.Problems.DataAnalysis;
3
4namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
5  public partial class ProblemDataPage : HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPage {
6    public ProblemDataPage() {
7      InitializeComponent();
8      dataAnalysisProblemView.Content = new RegressionProblem();
9    }
10
11    private void ProblemDataPage_SetActive(object sender, CancelEventArgs e) {
12      SetWizardButton(Wizard.WizardButtons.Next);
13    }
14  }
15}
Note: See TracBrowser for help on using the repository browser.