Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Operator Architecture Refactoring/HeuristicLab.Core/3.2/OperatorBaseView.Designer.cs @ 2027

Last change on this file since 2027 was 2027, checked in by swagner, 15 years ago

Refactoring of the operator architecture (#95)

File size: 5.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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
22using System;
23using System.Windows.Forms;
24
25namespace HeuristicLab.Core {
26  partial class OperatorBaseView {
27    /// <summary>
28    /// Required designer variable.
29    /// </summary>
30    private System.ComponentModel.IContainer components = null;
31
32    /// <summary>
33    /// Clean up any resources being used.
34    /// </summary>
35    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
36    protected override void Dispose(bool disposing) {
37      if (disposing && (components != null)) {
38        components.Dispose();
39      }
40      base.Dispose(disposing);
41    }
42
43    #region Component Designer generated code
44
45    /// <summary>
46    /// Required method for Designer support - do not modify
47    /// the contents of this method with the code editor.
48    /// </summary>
49    private void InitializeComponent() {
50      this.tabControl = new System.Windows.Forms.TabControl();
51      this.parametersTabPage = new System.Windows.Forms.TabPage();
52      this.operatorBaseParametersView = new HeuristicLab.Core.OperatorBaseParametersView();
53      this.descriptionTabPage = new System.Windows.Forms.TabPage();
54      this.operatorBaseDescriptionView = new HeuristicLab.Core.OperatorBaseDescriptionView();
55      this.tabControl.SuspendLayout();
56      this.parametersTabPage.SuspendLayout();
57      this.descriptionTabPage.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // tabControl
61      //
62      this.tabControl.Controls.Add(this.parametersTabPage);
63      this.tabControl.Controls.Add(this.descriptionTabPage);
64      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
65      this.tabControl.Location = new System.Drawing.Point(0, 0);
66      this.tabControl.Name = "tabControl";
67      this.tabControl.SelectedIndex = 0;
68      this.tabControl.Size = new System.Drawing.Size(423, 333);
69      this.tabControl.TabIndex = 0;
70      //
71      // parametersTabPage
72      //
73      this.parametersTabPage.Controls.Add(this.operatorBaseParametersView);
74      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
75      this.parametersTabPage.Name = "parametersTabPage";
76      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
77      this.parametersTabPage.Size = new System.Drawing.Size(415, 307);
78      this.parametersTabPage.TabIndex = 0;
79      this.parametersTabPage.Text = "Parameters";
80      this.parametersTabPage.UseVisualStyleBackColor = true;
81      //
82      // operatorBaseVariableInfosView
83      //
84      this.operatorBaseParametersView.Caption = "Operator";
85      this.operatorBaseParametersView.Dock = System.Windows.Forms.DockStyle.Fill;
86      this.operatorBaseParametersView.Location = new System.Drawing.Point(3, 3);
87      this.operatorBaseParametersView.Name = "operatorBaseVariableInfosView";
88      this.operatorBaseParametersView.Operator = null;
89      this.operatorBaseParametersView.Size = new System.Drawing.Size(409, 301);
90      this.operatorBaseParametersView.TabIndex = 0;
91      //
92      // descriptionTabPage
93      //
94      this.descriptionTabPage.Controls.Add(this.operatorBaseDescriptionView);
95      this.descriptionTabPage.Location = new System.Drawing.Point(4, 22);
96      this.descriptionTabPage.Name = "descriptionTabPage";
97      this.descriptionTabPage.Padding = new System.Windows.Forms.Padding(3);
98      this.descriptionTabPage.Size = new System.Drawing.Size(415, 307);
99      this.descriptionTabPage.TabIndex = 3;
100      this.descriptionTabPage.Text = "Description";
101      this.descriptionTabPage.UseVisualStyleBackColor = true;
102      //
103      // operatorBaseDescriptionView
104      //
105      this.operatorBaseDescriptionView.Caption = "Operator";
106      this.operatorBaseDescriptionView.Dock = System.Windows.Forms.DockStyle.Fill;
107      this.operatorBaseDescriptionView.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
108      this.operatorBaseDescriptionView.Location = new System.Drawing.Point(3, 3);
109      this.operatorBaseDescriptionView.Name = "operatorBaseDescriptionView";
110      this.operatorBaseDescriptionView.Operator = null;
111      this.operatorBaseDescriptionView.Size = new System.Drawing.Size(409, 301);
112      this.operatorBaseDescriptionView.TabIndex = 0;
113      //
114      // OperatorBaseView
115      //
116      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
117      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
118      this.Controls.Add(this.tabControl);
119      this.Name = "OperatorBaseView";
120      this.Size = new System.Drawing.Size(423, 333);
121      this.tabControl.ResumeLayout(false);
122      this.parametersTabPage.ResumeLayout(false);
123      this.descriptionTabPage.ResumeLayout(false);
124      this.ResumeLayout(false);
125
126    }
127
128    #endregion
129
130    protected TabControl tabControl;
131    protected TabPage parametersTabPage;
132    protected OperatorBaseParametersView operatorBaseParametersView;
133    private TabPage descriptionTabPage;
134    private OperatorBaseDescriptionView operatorBaseDescriptionView;
135
136
137  }
138}
Note: See TracBrowser for help on using the repository browser.