Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.Test/3.2/Actions/SaveAction.cs @ 2249

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

adapted MainForm to create DropDownButtons (ticket #716)

File size: 365 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 SaveAction : IAction{
9    #region IAction Members
10    public void Execute(IMainForm mainform) {
11      mainform.StatusStripText = "Save action called";
12    }
13    #endregion
14  }
15}
Note: See TracBrowser for help on using the repository browser.