Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.Test/3.2/Actions/NewEditorAction.cs @ 2252

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

fixed view docking (ticket #716)

File size: 485 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows.Forms;
6
7namespace HeuristicLab.MainForm.Test {
8  public class NewEditorAction : IAction{
9    #region IAction Members
10
11    public void Execute(IMainForm mainform) {
12      mainform.StatusStripText = "New Editor action called";
13      EditorView x = new EditorView();
14      x.Caption = "Editor View";
15      mainform.ShowView(x);
16    }
17
18    #endregion
19  }
20
21}
Note: See TracBrowser for help on using the repository browser.