Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Mainform refactoring/HeuristicLab.MainForm.Test/3.2/MenuItems/ExitToolStripMenuItem.cs @ 2426

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

initial version of refactored mainform (ticket #771)

File size: 720 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows.Forms;
6
7using HeuristicLab.MainForm.WindowsForms;
8using HeuristicLab.Common.Resources;
9
10namespace HeuristicLab.MainForm.Test {
11  public class CloseToolStripMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItemBase, ITestUserInterfaceItemProvider {
12    public override string Name {
13      get { return "Exit"; }
14    }
15
16    public override IEnumerable<string> Structure {
17      get { return new string[] { "File" }; }
18    }
19
20    public override int Position {
21      get { return 1400; }
22    }
23
24    public override void Execute() {
25      MainFormManager.Instance.Close();
26    }
27  }
28}
Note: See TracBrowser for help on using the repository browser.