- Timestamp:
- 07/14/16 22:38:23 (8 years ago)
- Location:
- stable
- Files:
-
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13502,13504,13507-13508,13512,13514,13517
- Property svn:mergeinfo changed
-
stable/HeuristicLab.DataPreprocessing.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.DataPreprocessing.Views merged: 13502,13504,13507-13508,13512,13514,13517
- Property svn:mergeinfo changed
-
stable/HeuristicLab.DataPreprocessing.Views/3.4/DataPreprocessingMenuItem.cs
r13502 r14075 21 21 22 22 using System.Collections.Generic; 23 using System.Windows.Forms; 23 24 using HeuristicLab.MainForm; 24 25 using HeuristicLab.Optimizer; 26 using HeuristicLab.Problems.DataAnalysis; 25 27 26 28 namespace HeuristicLab.DataPreprocessing.Views { … … 31 33 } 32 34 public override IEnumerable<string> Structure { 33 get { return new string[] { "&Edit" }; }35 get { return new string[] { "&Edit", "&Data Analysis" }; } 34 36 } 35 37 public override int Position { 36 get { return 6000; }38 get { return 5500; } 37 39 } 38 40 public override string ToolTipText { … … 41 43 42 44 public override void Execute() { 43 MainFormManager.MainForm.ShowContent(new PreprocessingContext()); 45 MainFormManager.MainForm.ShowContent(new PreprocessingContext(new RegressionProblemData())); 46 } 47 48 public override Keys ShortCutKeys { 49 get { return Keys.Control | Keys.D; } 44 50 } 45 51 }
Note: See TracChangeset
for help on using the changeset viewer.