Changeset 13720 for branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Menu/0_Config/40_AdministerOkbMenuItem.cs
- Timestamp:
- 03/19/16 22:35:39 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Menu/0_Config/40_AdministerOkbMenuItem.cs
r13718 r13720 22 22 using HeuristicLab.Clients.OKB; 23 23 using HeuristicLab.Clients.OKB.Administration; 24 using HeuristicLab.Common.Resources; 24 25 using HeuristicLab.MainForm; 25 26 using System.Collections.Generic; 27 using System.Drawing; 26 28 using System.Windows.Forms; 27 29 28 30 namespace HeuristicLab.OptimizationExpertSystem.Menu { 29 31 internal class AdministerOKBMenuItem : MenuItemBase { 32 public override Image Image { get { return VSImageLibrary.Database; } } 33 30 34 public override string Name { 31 get { return "Admin ister OKB"; }35 get { return "Admin"; } 32 36 } 37 33 38 public override IEnumerable<string> Structure { 34 get { return new[] { "Config" }; }39 get { return new[] { "Config", "OKB" }; } 35 40 } 41 36 42 public override int Position { 37 43 get { return 40; } 38 44 } 45 46 public override string ToolTipText { get { return "Administrate the OKB."; } } 39 47 40 48 public override void Execute() {
Note: See TracChangeset
for help on using the changeset viewer.