Free cookie consent management tool by TermsFeed Policy Generator

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

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

first version of redesigned MainForm (ticket #857)

File size: 403 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 static class NewEditorAction{
9
10    public static void Execute(IMainForm mainform) {
11      EditorView view = new EditorView();
12      view.Caption = "Editor View " + mainform.Views.Count();
13      view.Show();
14    }
15  }
16
17}
Note: See TracBrowser for help on using the repository browser.