Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.Test/3.2/MenuItems/SeparatorMenuItem.cs @ 2971

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

first version of redesigned MainForm (ticket #857)

File size: 525 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 SeparatorMenuItem : MenuSeparatorItem, ITestUserInterfaceItemProvider {
12    public override IEnumerable<string> Structure {
13      get { return new string[] { "File" }; }
14    }
15
16    public override int Position {
17      get { return 1120; }
18
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.