Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/13/16 14:51:38 (8 years ago)
Author:
pfleck
Message:

#2559

  • Enabled different export types for preprocessing.
  • Hid unused buttons in ViewShortcutListView.
  • Made data preprocessing a NamedItem to allow naming.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/DataPreprocessingMenuItem.cs

    r13502 r13507  
    2121
    2222using System.Collections.Generic;
     23using System.Windows.Forms;
    2324using HeuristicLab.MainForm;
    2425using HeuristicLab.Optimizer;
     
    3132      }
    3233      public override IEnumerable<string> Structure {
    33         get { return new string[] { "&Edit" }; }
     34        get { return new string[] { "&Edit", "&Data Analysis" }; }
    3435      }
    3536      public override int Position {
    36         get { return 6000; }
     37        get { return 5500; }
    3738      }
    3839      public override string ToolTipText {
     
    4344        MainFormManager.MainForm.ShowContent(new PreprocessingContext());
    4445      }
     46
     47      public override Keys ShortCutKeys {
     48        get { return Keys.Control | Keys.D; }
     49      }
    4550    }
    4651  }
Note: See TracChangeset for help on using the changeset viewer.