Changeset 2796 for trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems
- Timestamp:
- 02/15/10 05:26:02 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems/NewMenuItem.cs
r2790 r2796 23 23 using System.Drawing; 24 24 using System.Windows.Forms; 25 using HeuristicLab.Common.Resources;26 25 27 26 namespace HeuristicLab.Optimizer.MenuItems { … … 37 36 } 38 37 public override Image Image { 39 get { return Resources.NewIcon; }38 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument; } 40 39 } 41 40 public override Keys ShortCutKeys { -
trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems/OpenMenuItem.cs
r2790 r2796 23 23 using System.Drawing; 24 24 using System.Windows.Forms; 25 using HeuristicLab.Common.Resources;26 25 27 26 namespace HeuristicLab.Optimizer.MenuItems { … … 37 36 } 38 37 public override Image Image { 39 get { return Resources.OpenIcon; }38 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Open; } 40 39 } 41 40 public override Keys ShortCutKeys { -
trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems/SaveAllMenuItem.cs
r2790 r2796 25 25 using System.Linq; 26 26 using System.Windows.Forms; 27 using HeuristicLab.Common.Resources;28 27 using HeuristicLab.Core; 29 28 using HeuristicLab.MainForm; … … 41 40 } 42 41 public override Image Image { 43 get { return Resources.SaveAllIcon; }42 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.SaveAll; } 44 43 } 45 44 -
trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems/SaveMenuItem.cs
r2790 r2796 24 24 using System.Drawing; 25 25 using System.Windows.Forms; 26 using HeuristicLab.Common.Resources;27 26 using HeuristicLab.Core; 28 27 using HeuristicLab.MainForm; … … 40 39 } 41 40 public override Image Image { 42 get { return Resources.SaveIcon; }41 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Save; } 43 42 } 44 43 public override Keys ShortCutKeys {
Note: See TracChangeset
for help on using the changeset viewer.