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:
16 added
3 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    }
  • trunk/sources/HeuristicLab.MainForm.Test/3.2/HeuristicLabMainFormTestPlugin.cs

    r2233 r2243  
    2626
    2727namespace HeuristicLab.Modeling.Database {
    28   [ClassInfo(Name = "HeuristicLab.MainForm-3.2")]
    29   [PluginFile(Filename = "HeuristicLab.MainForm-3.2.dll", Filetype = PluginFileType.Assembly)]
    30   [PluginFile(Filename = "HeuristicLab.MainForm.Docking-3.2.dll", Filetype = PluginFileType.Assembly)]
    31   [Dependency(Dependency = "HeuristicLab.Core-3.2")]
    32   public class HeuristicLabMainFormPlugin : PluginBase {
     28  [ClassInfo(Name = "HeuristicLab.MainForm.Test-3.2")]
     29  [PluginFile(Filename = "HeuristicLab.MainForm.Test-3.2.dll", Filetype = PluginFileType.Assembly)] 
     30  [Dependency(Dependency = "HeuristicLab.MainForm-3.2")]
     31  public class HeuristicLabMainFormTestPlugin : PluginBase {
    3332  }
    3433}
Note: See TracChangeset for help on using the changeset viewer.