Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Mainform refactoring/HeuristicLab.MainForm.Test/3.2/ButtonItems/NewToolStripButtonItem.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: 713 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 NewToolStripButtonItem : HeuristicLab.MainForm.WindowsForms.ToolBarItemBase, ITestUserInterfaceItemProvider {
9    public override int Position {
10      get { return 10; }
11    }
12
13    public override string Name {
14      get { return "New"; }
15    }
16
17    public override bool IsDropDownButton {
18      get { return true; }
19    }
20
21    public override System.Drawing.Image Image {
22      get { return HeuristicLab.Common.Resources.Resources.NewIcon; }
23    }
24
25    public override void Execute() {
26    }
27  }
28}
Note: See TracBrowser for help on using the repository browser.