Last change
on this file since 9275 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 | |
---|
1 | using System.ComponentModel;
|
---|
2 |
|
---|
3 | namespace 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.