Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3281


Ignore:
Timestamp:
04/07/10 11:38:19 (14 years ago)
Author:
mkommend
Message:

implemented showInViewHost and moved ViewHost from Core.Views to MainForm.WindowsForm (ticket #961)

Location:
trunk/sources
Files:
25 edited
2 moved

Legend:

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

    r3177 r3281  
    178178      <DependentUpon>TypeSelector.cs</DependentUpon>
    179179    </Compile>
    180     <Compile Include="ViewHost.cs">
    181       <SubType>UserControl</SubType>
    182     </Compile>
    183     <Compile Include="ViewHost.Designer.cs">
    184       <DependentUpon>ViewHost.cs</DependentUpon>
    185     </Compile>
    186180    <Compile Include="OperatorCollectionView.cs">
    187181      <SubType>UserControl</SubType>
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.Designer.cs

    r2932 r3281  
    6060      this.imageList = new System.Windows.Forms.ImageList(this.components);
    6161      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    62       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     62      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    6363      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
    6464      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     
    208208    protected ToolTip toolTip;
    209209    protected ImageList imageList;
    210     protected ViewHost viewHost;
     210    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    211211  }
    212212}
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.Designer.cs

    r2932 r3281  
    6161      this.addButton = new System.Windows.Forms.Button();
    6262      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    63       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     63      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    6464      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
    6565      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     
    235235    protected ToolTip toolTip;
    236236    protected ImageList imageList;
    237     protected ViewHost viewHost;
     237    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    238238    protected Button sortAscendingButton;
    239239    protected Button sortDescendingButton;
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.Designer.cs

    r2932 r3281  
    6060      this.addButton = new System.Windows.Forms.Button();
    6161      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    62       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     62      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    6363      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
    6464      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     
    235235    protected ToolTip toolTip;
    236236    protected ImageList imageList;
    237     protected ViewHost viewHost;
     237    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    238238  }
    239239}
  • trunk/sources/HeuristicLab.Core.Views/3.3/OperatorGraphView.cs

    r2949 r3281  
    3030  /// The visual representation of an <see cref="OperatorGraph"/>.
    3131  /// </summary>
    32   [View("OperatorGraph View (Tree)")]
     32  [View("OperatorGraph View (Tree)",ShowInViewHost=true)]
    3333  [Content(typeof(OperatorGraph), true)]
    3434  public partial class OperatorGraphView : ItemView {
  • trunk/sources/HeuristicLab.Core.Views/3.3/VariableValueView.Designer.cs

    r2989 r3281  
    4646    private void InitializeComponent() {
    4747      this.valuePanel = new System.Windows.Forms.Panel();
    48       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     48      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    4949      this.valuePanel.SuspendLayout();
    5050      this.SuspendLayout();
     
    8787    #endregion
    8888
    89     protected ViewHost viewHost;
     89    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    9090    protected System.Windows.Forms.Panel valuePanel;
    9191  }
  • trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.Designer.cs

    r2924 r3281  
    5050      this.valueGroupBox = new System.Windows.Forms.GroupBox();
    5151      this.valuePanel = new System.Windows.Forms.Panel();
    52       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     52      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5353      this.clearValueButton = new System.Windows.Forms.Button();
    5454      this.setValueButton = new System.Windows.Forms.Button();
     
    178178    protected System.Windows.Forms.TextBox dataTypeTextBox;
    179179    protected System.Windows.Forms.GroupBox valueGroupBox;
    180     protected ViewHost viewHost;
     180    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    181181    protected System.Windows.Forms.Button clearValueButton;
    182182    protected System.Windows.Forms.Button setValueButton;
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/DockForm.cs

    r2790 r3281  
    3737      InitializeComponent();
    3838      this.view = view;
    39       if (View != null) {
     39      if (view != null) {
    4040        if (view is UserControl) {
    4141          switch (((UserControl)view).Dock) {
     
    5353              break;
    5454          }
    55           Control control = (Control)View;
     55          Type viewType = view.GetType();
     56          Control control = (Control)view;
    5657          control.Dock = DockStyle.Fill;
    57           this.Size = control.Size;
    58           viewPanel.Controls.Add(control);
    59           View.CaptionChanged += new EventHandler(View_CaptionChanged);
     58          this.view.CaptionChanged += new EventHandler(View_CaptionChanged);
    6059          UpdateText();
     60
     61          ContentView contentView = view as ContentView;
     62          if (ViewAttribute.GetShowInViewHost(viewType) && contentView != null) {
     63            ViewHost viewHost = new ViewHost();
     64            viewHost.ViewType = viewType;
     65            viewHost.Content = contentView.Content;
     66            viewHost.Dock = DockStyle.Fill;
     67            viewPanel.Controls.Add(viewHost);
     68          } else
     69            viewPanel.Controls.Add(control);
    6170        }
    6271      } else {
     
    6978      }
    7079    }
    71 
    7280    private IView view;
    7381    public IView View {
    74       get { return view; }
     82      get { return this.view; }
    7583    }
    7684
     
    7987        Invoke(new MethodInvoker(UpdateText));
    8088      else
    81         this.Text = View.Caption;
     89        this.Text = this.View.Caption;
    8290    }
    8391
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/DocumentForm.Designer.cs

    r2790 r3281  
    3232    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    3333    protected override void Dispose(bool disposing) {
    34       if (View != null)
    35         View.CaptionChanged -= new System.EventHandler(View_CaptionChanged);
     34      if (view != null)
     35        view.CaptionChanged -= new System.EventHandler(View_CaptionChanged);
    3636      if (disposing && (components != null)) {
    3737        components.Dispose();
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/DocumentForm.cs

    r2790 r3281  
    3030namespace HeuristicLab.MainForm.WindowsForms {
    3131  internal partial class DocumentForm : Form {
    32     private IView myView;
    33     public IView View {
    34       get { return myView; }
    35     }
     32    private IView view;
    3633
    3734    public DocumentForm() {
     
    4037    public DocumentForm(IView view)
    4138      : this() {
    42       myView = view;
    43       if (View != null) {
    44         Control control = (Control)View;
     39      this.view = view;
     40      if (view != null) {
     41        Type viewType = view.GetType();
     42        Control control = (Control)view;
    4543        control.Dock = DockStyle.Fill;
    46         viewPanel.Controls.Add(control);
    47         View.CaptionChanged += new EventHandler(View_CaptionChanged);
     44        view.CaptionChanged += new EventHandler(View_CaptionChanged);
    4845        UpdateText();
     46
     47        ContentView contentView = view as ContentView;
     48        if (ViewAttribute.GetShowInViewHost(viewType) && contentView != null) {
     49          ViewHost viewHost = new ViewHost();
     50          viewHost.ViewType = viewType;
     51          viewHost.Content = contentView.Content;
     52          viewHost.Dock = DockStyle.Fill;
     53          viewPanel.Controls.Add(viewHost);
     54        } else
     55          viewPanel.Controls.Add(control);
    4956      } else {
    5057        Label errorLabel = new Label();
     
    6168        Invoke(new MethodInvoker(UpdateText));
    6269      else
    63         Text = View.Caption;
     70        Text = view.Caption;
    6471    }
    6572
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/HeuristicLab.MainForm.WindowsForms-3.2.csproj

    r3227 r3281  
    152152      <DependentUpon>ViewContextMenuStrip.cs</DependentUpon>
    153153    </Compile>
     154    <Compile Include="ViewHost.cs">
     155      <SubType>UserControl</SubType>
     156    </Compile>
     157    <Compile Include="ViewHost.Designer.cs">
     158      <DependentUpon>ViewHost.cs</DependentUpon>
     159    </Compile>
    154160  </ItemGroup>
    155161  <ItemGroup>
     
    158164  </ItemGroup>
    159165  <ItemGroup>
     166    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.2\HeuristicLab.Common.Resources-3.2.csproj">
     167      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
     168      <Name>HeuristicLab.Common.Resources-3.2</Name>
     169    </ProjectReference>
    160170    <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.WinFormsUI\2.3.1\WinFormsUI-2.3.1\WinFormsUI-2.3.1.csproj">
    161171      <Project>{1849A92E-DCFC-4E05-BB0A-D7B7A3DAFCFB}</Project>
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/HeuristicLabMainFormWindowsFormsPlugin.cs.frame

    r2790 r3281  
    2727namespace HeuristicLab.MainForm.WindowsForms {
    2828  [Plugin("HeuristicLab.MainForm.WindowsForms", "3.2.0.$WCREV$")]
    29   [PluginFile("HeuristicLab.MainForm.WindowsForms-3.2.dll", PluginFileType.Assembly)] 
     29  [PluginFile("HeuristicLab.MainForm.WindowsForms-3.2.dll", PluginFileType.Assembly)]
     30  [PluginDependency("HeuristicLab.Common.Resources", "3.2")]
    3031  [PluginDependency("HeuristicLab.MainForm", "3.2")]
    3132  [PluginDependency("HeuristicLab.WinFormsUI", "2.3.1")]
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/ViewHost.Designer.cs

    r3280 r3281  
    2020#endregion
    2121
    22 namespace HeuristicLab.Core.Views {
     22namespace HeuristicLab.MainForm.WindowsForms {
    2323  partial class ViewHost {
    2424    /// <summary>
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/ViewHost.cs

    r3280 r3281  
    2424using System.Linq;
    2525using System.Windows.Forms;
    26 using HeuristicLab.Common;
    2726using HeuristicLab.MainForm;
    28 using HeuristicLab.MainForm.WindowsForms;
    2927
    30 namespace HeuristicLab.Core.Views {
     28namespace HeuristicLab.MainForm.WindowsForms {
    3129  public sealed partial class ViewHost : UserControl {
    3230    private Type viewType;
     
    3735          if (value != null && !ViewCanShowContent(value, content))
    3836            throw new ArgumentException(string.Format("View \"{0}\" cannot display content \"{1}\".",
    39                                                       value.GetPrettyName(),
    40                                                       content.GetType().GetPrettyName()));
     37                                                      value, content.GetType()));
    4138          viewType = value;
    4239          UpdateView();
     
    110107      if (!ViewCanShowContent(viewType, content))
    111108        throw new InvalidOperationException(string.Format("View \"{0}\" cannot display content \"{1}\".",
    112                                                           viewType.GetPrettyName(),
    113                                                           Content.GetType().GetPrettyName()));
     109                                                          viewType, Content.GetType()));
    114110
    115111      UpdateActiveMenuItem();
  • trunk/sources/HeuristicLab.MainForm/3.2/ViewAttribute.cs

    r2837 r3281  
    3131    public ViewAttribute(string name) {
    3232      this.name = name;
     33      this.showInViewHost = false;
    3334    }
    3435
     
    3738      get { return this.name; }
    3839      set { this.name = value; }
     40    }
     41
     42    private bool showInViewHost;
     43    public bool ShowInViewHost {
     44      get { return this.showInViewHost; }
     45      set { this.showInViewHost = value; }
    3946    }
    4047
     
    5057      return viewType.Name;
    5158    }
     59
     60    public static bool GetShowInViewHost(MemberInfo viewType) {
     61      ViewAttribute[] attributes = (ViewAttribute[])viewType.GetCustomAttributes(typeof(ViewAttribute), false);
     62      if (attributes.Length == 1)
     63        return attributes[0].showInViewHost;
     64      return false;
     65    }
    5266  }
    5367}
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphView.Designer.cs

    r2934 r3281  
    3232      this.splitContainer = new System.Windows.Forms.SplitContainer();
    3333      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    34       this.detailsViewHost = new HeuristicLab.Core.Views.ViewHost();
     34      this.detailsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    3535      this.selectButton = new System.Windows.Forms.Button();
    3636      this.panButton = new System.Windows.Forms.Button();
     
    254254    private System.Windows.Forms.SplitContainer splitContainer;
    255255    private System.Windows.Forms.GroupBox detailsGroupBox;
    256     private HeuristicLab.Core.Views.ViewHost detailsViewHost;
     256    private HeuristicLab.MainForm.WindowsForms.ViewHost detailsViewHost;
    257257    private System.Windows.Forms.Button selectButton;
    258258    private System.Windows.Forms.Button zoomOutButton;
  • trunk/sources/HeuristicLab.Operators.Views/3.3/AlgorithmOperatorView.Designer.cs

    r2949 r3281  
    4949      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
    5050      this.operatorGraphTabPage = new System.Windows.Forms.TabPage();
    51       this.operatorGraphViewHost = new HeuristicLab.Core.Views.ViewHost();
     51      this.operatorGraphViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5252      this.breakpointCheckBox = new System.Windows.Forms.CheckBox();
    5353      this.breakpointLabel = new System.Windows.Forms.Label();
     
    178178    protected System.Windows.Forms.TabPage operatorGraphTabPage;
    179179    protected HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
    180     protected HeuristicLab.Core.Views.ViewHost operatorGraphViewHost;
     180    protected HeuristicLab.MainForm.WindowsForms.ViewHost operatorGraphViewHost;
    181181    protected System.Windows.Forms.CheckBox breakpointCheckBox;
    182182    protected System.Windows.Forms.Label breakpointLabel;
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.Designer.cs

    r3275 r3281  
    5353      this.openProblemButton = new System.Windows.Forms.Button();
    5454      this.newProblemButton = new System.Windows.Forms.Button();
    55       this.problemViewHost = new HeuristicLab.Core.Views.ViewHost();
     55      this.problemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5656      this.resultsTabPage = new System.Windows.Forms.TabPage();
    5757      this.resultsView = new HeuristicLab.Optimization.Views.ResultCollectionView();
     
    350350    protected System.Windows.Forms.TabPage problemTabPage;
    351351    protected HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
    352     protected HeuristicLab.Core.Views.ViewHost problemViewHost;
     352    protected HeuristicLab.MainForm.WindowsForms.ViewHost problemViewHost;
    353353    protected System.Windows.Forms.Button newProblemButton;
    354354    protected System.Windows.Forms.Button saveProblemButton;
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/BatchRunView.Designer.cs

    r3265 r3281  
    5151      this.openAlgorithmButton = new System.Windows.Forms.Button();
    5252      this.newAlgorithmButton = new System.Windows.Forms.Button();
    53       this.algorithmViewHost = new HeuristicLab.Core.Views.ViewHost();
     53      this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5454      this.runsTabPage = new System.Windows.Forms.TabPage();
    5555      this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
     
    335335    private System.Windows.Forms.TabControl tabControl;
    336336    private System.Windows.Forms.TabPage algorithmTabPage;
    337     private HeuristicLab.Core.Views.ViewHost algorithmViewHost;
     337    private HeuristicLab.MainForm.WindowsForms.ViewHost algorithmViewHost;
    338338    private System.Windows.Forms.Button newAlgorithmButton;
    339339    private System.Windows.Forms.Button saveAlgorithmButton;
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/EngineAlgorithmView.Designer.cs

    r3262 r3281  
    4949      this.engineComboBox = new System.Windows.Forms.ComboBox();
    5050      this.engineTabPage = new System.Windows.Forms.TabPage();
    51       this.engineViewHost = new HeuristicLab.Core.Views.ViewHost();
     51      this.engineViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5252      this.tabControl.SuspendLayout();
    5353      this.parametersTabPage.SuspendLayout();
     
    238238    protected System.Windows.Forms.ComboBox engineComboBox;
    239239    protected System.Windows.Forms.TabPage engineTabPage;
    240     protected HeuristicLab.Core.Views.ViewHost engineViewHost;
     240    protected HeuristicLab.MainForm.WindowsForms.ViewHost engineViewHost;
    241241
    242242  }
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/ResultView.Designer.cs

    r3226 r3281  
    4949      this.valueGroupBox = new System.Windows.Forms.GroupBox();
    5050      this.valuePanel = new System.Windows.Forms.Panel();
    51       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     51      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5252      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5353      this.valueGroupBox.SuspendLayout();
     
    148148    private System.Windows.Forms.TextBox dataTypeTextBox;
    149149    private System.Windows.Forms.GroupBox valueGroupBox;
    150     private HeuristicLab.Core.Views.ViewHost viewHost;
     150    private HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    151151    private System.Windows.Forms.Panel valuePanel;
    152152  }
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionView.Designer.cs

    r3280 r3281  
    5858      this.removeButton = new System.Windows.Forms.Button();
    5959      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    60       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     60      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    6161      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
    6262      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     
    194194    protected ToolTip toolTip;
    195195    protected ImageList imageList;
    196     protected HeuristicLab.Core.Views.ViewHost viewHost;
     196    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    197197  }
    198198}
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunView.Designer.cs

    r3280 r3281  
    5454      this.valueColumnHeader = new System.Windows.Forms.ColumnHeader();
    5555      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    56       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     56      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5757      this.imageList = new System.Windows.Forms.ImageList(this.components);
    5858      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     
    203203    private System.Windows.Forms.ColumnHeader nameColumnHeader;
    204204    private System.Windows.Forms.ColumnHeader valueColumnHeader;
    205     private HeuristicLab.Core.Views.ViewHost viewHost;
     205    private HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    206206    private System.Windows.Forms.ImageList imageList;
    207207
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/UserDefinedAlgorithmView.Designer.cs

    r3275 r3281  
    4949      this.openOperatorGraphButton = new System.Windows.Forms.Button();
    5050      this.newOperatorGraphButton = new System.Windows.Forms.Button();
    51       this.operatorGraphViewHost = new HeuristicLab.Core.Views.ViewHost();
     51      this.operatorGraphViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5252      this.globalScopeTabPage = new System.Windows.Forms.TabPage();
    5353      this.globalScopeView = new HeuristicLab.Core.Views.ScopeView();
     
    232232    private System.Windows.Forms.Button openOperatorGraphButton;
    233233    private System.Windows.Forms.Button newOperatorGraphButton;
    234     private HeuristicLab.Core.Views.ViewHost operatorGraphViewHost;
     234    private HeuristicLab.MainForm.WindowsForms.ViewHost operatorGraphViewHost;
    235235
    236236  }
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ConstrainedValueParameterView.Designer.cs

    r2924 r3281  
    4646    private void InitializeComponent() {
    4747      this.valueGroupBox = new System.Windows.Forms.GroupBox();
    48       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     48      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    4949      this.valueComboBox = new System.Windows.Forms.ComboBox();
    5050      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     
    136136
    137137    protected System.Windows.Forms.GroupBox valueGroupBox;
    138     protected HeuristicLab.Core.Views.ViewHost viewHost;
     138    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    139139    protected System.Windows.Forms.ComboBox valueComboBox;
    140140  }
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.Designer.cs

    r2924 r3281  
    4848      this.valueGroupBox = new System.Windows.Forms.GroupBox();
    4949      this.valuePanel = new System.Windows.Forms.Panel();
    50       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     50      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5151      this.clearValueButton = new System.Windows.Forms.Button();
    5252      this.setValueButton = new System.Windows.Forms.Button();
     
    199199    protected System.Windows.Forms.GroupBox valueGroupBox;
    200200    protected System.Windows.Forms.Panel valuePanel;
    201     protected HeuristicLab.Core.Views.ViewHost viewHost;
     201    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    202202    protected System.Windows.Forms.Button setValueButton;
    203203    protected System.Windows.Forms.Button clearValueButton;
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueParameterView.Designer.cs

    r2948 r3281  
    4848      this.valueGroupBox = new System.Windows.Forms.GroupBox();
    4949      this.valuePanel = new System.Windows.Forms.Panel();
    50       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     50      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5151      this.clearValueButton = new System.Windows.Forms.Button();
    5252      this.setValueButton = new System.Windows.Forms.Button();
     
    162162    protected System.Windows.Forms.GroupBox valueGroupBox;
    163163    protected System.Windows.Forms.Panel valuePanel;
    164     protected HeuristicLab.Core.Views.ViewHost viewHost;
     164    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    165165    protected System.Windows.Forms.Button setValueButton;
    166166    protected System.Windows.Forms.Button clearValueButton;
Note: See TracChangeset for help on using the changeset viewer.