Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/05/09 19:24:49 (15 years ago)
Author:
mkommend
Message:

added HeuristicLab!.MainForm.Test project and demo implementation
adapted MainForm to new design (ticket #716)

Location:
trunk/sources/HeuristicLab.MainForm.Test
Files:
2 added
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.Test/3.2/HeuristicLabMainFormTestApplication.cs

    r2229 r2243  
    2525using System.Windows.Forms;
    2626using HeuristicLab.PluginInfrastructure;
     27using HeuristicLab.MainForm;
    2728
    28 namespace HeuristicLab.Grid {
    29   [ClassInfo(Name = "Grid Client", Description="Client application for the distributed engine grid.", AutoRestart = true)]
     29namespace HeuristicLab.MainForm.Test {
     30  [ClassInfo(Name = "MainForm Test", Description="Test application for new mainform development.")]
    3031  class GridClientApplication : ApplicationBase {
    3132    public override void Run() {
    32       Form mainForm = new ClientForm();
     33      DockingMainForm mainForm = new DockingMainForm(typeof(ITestUserInterfaceItemProvider));
     34      mainForm.Title = "Test new MAINFORM concept";
    3335      Application.Run(mainForm);
    3436    }
Note: See TracChangeset for help on using the changeset viewer.