Last change
on this file since 13337 was
7808,
checked in by spimming, 13 years ago
|
#1807:
- experiment wizard initial commit
- plugin file frames added
- wizard renamed
|
File size:
795 bytes
|
Line | |
---|
1 |
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Windows.Forms;
|
---|
4 | using HeuristicLab.Optimizer;
|
---|
5 | namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
|
---|
6 | public class ExperimentWizardMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IOptimizerUserInterfaceItemProvider {
|
---|
7 | public override string Name {
|
---|
8 | get { return "&Experiment Wizard"; }
|
---|
9 | }
|
---|
10 | public override IEnumerable<string> Structure {
|
---|
11 | get { return new string[] { "&Services", "&Data Analysis Service" }; }
|
---|
12 | }
|
---|
13 | public override void Execute() {
|
---|
14 | new DataAnalysisExperimentWizard().Show();
|
---|
15 | }
|
---|
16 | public override int Position {
|
---|
17 | get { return 10000; }
|
---|
18 | }
|
---|
19 | public override Keys ShortCutKeys {
|
---|
20 | get { return Keys.Control | Keys.D; }
|
---|
21 | }
|
---|
22 | }
|
---|
23 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.