Last change
on this file since 2636 was
2458,
checked in by mkommend, 15 years ago
|
integrated branch MainForm refactoring into trunk (ticket #771)
|
File size:
358 bytes
|
Rev | Line | |
---|
[2249] | 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 {
|
---|
[2458] | 8 | public class NewFormAction {
|
---|
[2249] | 9 | public void Execute(IMainForm mainform) {
|
---|
[2458] | 10 | FormView1 x = new FormView1();
|
---|
[2252] | 11 | x.Caption = "FormView";
|
---|
| 12 | mainform.ShowView(x);
|
---|
[2249] | 13 | }
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.