Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Mainform refactoring/HeuristicLab.MainForm.Test/3.2/ButtonItems/NewEditorToolStripButtonItem.cs @ 2433

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

first version of generic views (ticket #771)

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