Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.Optimization.Views/3.3/ICharacteristicCalculatorView.Designer.cs @ 13667

Last change on this file since 13667 was 13667, checked in by abeham, 8 years ago

#2457: worked on expert system, created new application, merged trunk change of r13666

File size: 5.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Optimization.Views {
23  partial class ICharacteristicCalculatorView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.tabControl = new System.Windows.Forms.TabControl();
48      this.parametersTabPage = new System.Windows.Forms.TabPage();
49      this.characteristicsTabPage = new System.Windows.Forms.TabPage();
50      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
51      this.tabControl.SuspendLayout();
52      this.parametersTabPage.SuspendLayout();
53      this.SuspendLayout();
54      //
55      // tabControl
56      //
57      this.tabControl.Controls.Add(this.parametersTabPage);
58      this.tabControl.Controls.Add(this.characteristicsTabPage);
59      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
60      this.tabControl.Location = new System.Drawing.Point(0, 0);
61      this.tabControl.Name = "tabControl";
62      this.tabControl.SelectedIndex = 0;
63      this.tabControl.Size = new System.Drawing.Size(764, 498);
64      this.tabControl.TabIndex = 0;
65      //
66      // parametersTabPage
67      //
68      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
69      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
70      this.parametersTabPage.Name = "parametersTabPage";
71      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
72      this.parametersTabPage.Size = new System.Drawing.Size(756, 472);
73      this.parametersTabPage.TabIndex = 0;
74      this.parametersTabPage.Text = "Parameters";
75      this.parametersTabPage.UseVisualStyleBackColor = true;
76      //
77      // characteristicsTabPage
78      //
79      this.characteristicsTabPage.Location = new System.Drawing.Point(4, 22);
80      this.characteristicsTabPage.Name = "characteristicsTabPage";
81      this.characteristicsTabPage.Padding = new System.Windows.Forms.Padding(3);
82      this.characteristicsTabPage.Size = new System.Drawing.Size(756, 472);
83      this.characteristicsTabPage.TabIndex = 1;
84      this.characteristicsTabPage.Text = "Characteristics";
85      this.characteristicsTabPage.UseVisualStyleBackColor = true;
86      //
87      // parameterCollectionView
88      //
89      this.parameterCollectionView.AllowEditingOfHiddenParameters = true;
90      this.parameterCollectionView.Caption = "ParameterCollection View";
91      this.parameterCollectionView.Content = null;
92      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
93      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
94      this.parameterCollectionView.Name = "parameterCollectionView";
95      this.parameterCollectionView.ReadOnly = false;
96      this.parameterCollectionView.ShowDetails = true;
97      this.parameterCollectionView.Size = new System.Drawing.Size(750, 466);
98      this.parameterCollectionView.TabIndex = 0;
99      //
100      // ICharacteristicCalculatorView
101      //
102      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
104      this.Controls.Add(this.tabControl);
105      this.Name = "ICharacteristicCalculatorView";
106      this.Size = new System.Drawing.Size(764, 498);
107      this.tabControl.ResumeLayout(false);
108      this.parametersTabPage.ResumeLayout(false);
109      this.ResumeLayout(false);
110
111    }
112
113    #endregion
114
115    private System.Windows.Forms.TabControl tabControl;
116    private System.Windows.Forms.TabPage parametersTabPage;
117    private Core.Views.ParameterCollectionView parameterCollectionView;
118    private System.Windows.Forms.TabPage characteristicsTabPage;
119  }
120}
Note: See TracBrowser for help on using the repository browser.