Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/09 11:08:34 (14 years ago)
Author:
swagner
Message:

Implemented first draft of MainForm support in HeuristicLab.Core/HeuristicLab.Core.Views and all other depending plugins (#770)

Location:
trunk/sources/HeuristicLab.Core.Views/3.3
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3

    • Property svn:ignore
      •  

        old new  
        11bin
        22obj
         3*.user
  • trunk/sources/HeuristicLab.Core.Views/3.3/OperatorBaseVariableInfosView.cs

    r2515 r2520  
    2828using System.Windows.Forms;
    2929using HeuristicLab.Common;
     30using HeuristicLab.MainForm;
    3031
    31 namespace HeuristicLab.Core {
     32namespace HeuristicLab.Core.Views {
    3233  /// <summary>
    3334  /// The visual representation of the information of the variables of an operator.
     
    131132      if (variableInfosListView.SelectedItems.Count == 1) {
    132133        IVariableInfo variableInfo = (IVariableInfo)variableInfosListView.SelectedItems[0].Tag;
    133         Control control = (Control)variableInfo.CreateView();
     134        Control control = (Control)MainFormManager.CreateDefaultView(variableInfo);
    134135        variableInfoDetailsGroupBox.Controls.Add(control);
    135136        control.Dock = DockStyle.Fill;
Note: See TracChangeset for help on using the changeset viewer.