Rev | Line | |
---|
[2249] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
[2458] | 5 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[2249] | 6 |
|
---|
| 7 | namespace HeuristicLab.MainForm.Test {
|
---|
[2696] | 8 | public class NewToolStripButtonItem : HeuristicLab.MainForm.WindowsForms.ToolBarItem, ITestUserInterfaceItemProvider {
|
---|
[2249] | 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 |
|
---|
[2458] | 25 | public override void Execute() {
|
---|
[2249] | 26 | }
|
---|
| 27 | }
|
---|
| 28 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.