Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/13/09 10:58:31 (15 years ago)
Author:
mkommend
Message:

initial version of refactored mainform (ticket #771)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Mainform refactoring/HeuristicLab.MainForm.Test/3.2/Actions/NewFormAction.cs

    r2252 r2426  
    66
    77namespace HeuristicLab.MainForm.Test {
    8   public class NewFormAction : IAction{
    9     #region IAction Members
    10 
     8  public class NewFormAction {
    119    public void Execute(IMainForm mainform) {
    12       mainform.StatusStripText = "New form called";
     10      MessageBox.Show("New form called");
    1311      FormView x = new FormView();
    1412      x.Caption = "FormView";
    1513      mainform.ShowView(x);
    1614    }
    17 
    18     #endregion
    1915  }
    2016
Note: See TracChangeset for help on using the changeset viewer.