Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/15/12 14:11:56 (12 years ago)
Author:
spimming
Message:

#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:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ProblemDataPage.cs

    r7816 r7824  
    44namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
    55  public partial class ProblemDataPage : HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPage {
    6     public ProblemDataPage() {
     6    private DataAnalysisWizardContext context;
     7    public DataAnalysisWizardContext Context {
     8      get { return context; }
     9    }
     10
     11    public ProblemDataPage(DataAnalysisWizardContext context) {
    712      InitializeComponent();
     13      this.context = context;
    814      dataAnalysisProblemView.Content = new RegressionProblem();
    915    }
     
    1218      SetWizardButton(Wizard.WizardButtons.Next);
    1319    }
     20
     21    private void ProblemDataPage_WizardNext(object sender, Wizard.WizardPageEventArgs e) {
     22      context.Problem = dataAnalysisProblemView.Content;
     23    }
    1424  }
    1525}
Note: See TracChangeset for help on using the changeset viewer.