Changeset 2796 for trunk/sources/HeuristicLab.Optimizer
- Timestamp:
- 02/15/10 05:26:02 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimizer/3.3
- Files:
-
- 8 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 { -
trunk/sources/HeuristicLab.Optimizer/3.3/ToolBarItems/NewToolBarItem.cs
r2790 r2796 21 21 22 22 using System.Drawing; 23 using HeuristicLab.Common.Resources;24 23 25 24 namespace HeuristicLab.Optimizer { … … 35 34 } 36 35 public override Image Image { 37 get { return Resources.NewIcon; }36 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument; } 38 37 } 39 38 -
trunk/sources/HeuristicLab.Optimizer/3.3/ToolBarItems/OpenToolBarItem.cs
r2790 r2796 21 21 22 22 using System.Drawing; 23 using HeuristicLab.Common.Resources;24 23 25 24 namespace HeuristicLab.Optimizer { … … 35 34 } 36 35 public override Image Image { 37 get { return Resources.OpenIcon; }36 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Open; } 38 37 } 39 38 -
trunk/sources/HeuristicLab.Optimizer/3.3/ToolBarItems/SaveAllToolBarItem.cs
r2790 r2796 24 24 using System.Linq; 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.SaveAllIcon; }41 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.SaveAll; } 43 42 } 44 43 -
trunk/sources/HeuristicLab.Optimizer/3.3/ToolBarItems/SaveToolBarItem.cs
r2790 r2796 23 23 using System.Drawing; 24 24 using System.Windows.Forms; 25 using HeuristicLab.Common.Resources;26 25 using HeuristicLab.Core; 27 26 using HeuristicLab.MainForm; … … 39 38 } 40 39 public override Image Image { 41 get { return Resources.SaveIcon; }40 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Save; } 42 41 } 43 42
Note: See TracChangeset
for help on using the changeset viewer.