Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.Test/3.2/MenuItems/ExitToolStripMenuItem.cs @ 2318

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

first part of changes after discussion with SWA (ticket #716)

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