Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Windows.Forms;
|
---|
6 |
|
---|
7 | using HeuristicLab.MainForm.WindowsForms;
|
---|
8 | using HeuristicLab.Common.Resources;
|
---|
9 |
|
---|
10 | namespace 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.