Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.Test/3.2/MenuItems/OpenToolStripMenuItem.cs @ 3030

Last change on this file since 3030 was 2696, checked in by mkommend, 15 years ago

first version of redesigned MainForm (ticket #857)

File size: 927 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows.Forms;
6using HeuristicLab.MainForm.WindowsForms;
7using HeuristicLab.Common.Resources;
8
9namespace HeuristicLab.MainForm.Test {
10  public class OpenToolStripMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, ITestUserInterfaceItemProvider {
11    public override string Name {
12      get { return "Open"; }
13    }
14
15    public override IEnumerable<string> Structure {
16      get { return new string[] { "File" }; }
17    }
18
19    public override int Position {
20      get { return 1200; }
21    }
22
23    public override Keys ShortCutKeys {
24      get { return Keys.Control | Keys.O; }
25    }
26
27    public override System.Drawing.Image Image {
28      get { return Resources.OpenIcon; }
29    }
30
31    public override void Execute() {
32      new OpenAction().Execute(MainFormManager.MainForm);
33    }
34  }
35}
Note: See TracBrowser for help on using the repository browser.