source:
trunk/sources/HeuristicLab.MainForm.Test/3.2/Actions/NewFormAction.cs
@
3491
Last change on this file since 3491 was 2696, checked in by mkommend, 15 years ago | |
---|---|
File size: 346 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | using System.Windows.Forms; |
6 | |
7 | namespace HeuristicLab.MainForm.Test { |
8 | public class NewFormAction { |
9 | public void Execute(IMainForm mainform) { |
10 | FormView1 x = new FormView1(); |
11 | x.Caption = "FormView"; |
12 | x.Show(); |
13 | } |
14 | } |
15 | |
16 | } |
Note: See TracBrowser
for help on using the repository browser.