Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators.Views/3.3/CombinedOperatorView.Designer.cs @ 2790

Last change on this file since 2790 was 2790, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 7.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Operators.Views {
23  partial class CombinedOperatorView {
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) {
35        if (components != null) 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.operatorGraphTabPage = new System.Windows.Forms.TabPage();
50      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
51      this.operatorGraphView = new HeuristicLab.Core.Views.OperatorGraphView();
52      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
53      this.tabControl.SuspendLayout();
54      this.parametersTabPage.SuspendLayout();
55      this.operatorGraphTabPage.SuspendLayout();
56      this.SuspendLayout();
57      //
58      // nameTextBox
59      //
60      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
61      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
62      this.nameTextBox.Size = new System.Drawing.Size(414, 20);
63      //
64      // descriptionTextBox
65      //
66      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
67                  | System.Windows.Forms.AnchorStyles.Right)));
68      this.descriptionTextBox.Size = new System.Drawing.Size(414, 86);
69      //
70      // tabControl
71      //
72      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
73                  | System.Windows.Forms.AnchorStyles.Left)
74                  | System.Windows.Forms.AnchorStyles.Right)));
75      this.tabControl.Controls.Add(this.parametersTabPage);
76      this.tabControl.Controls.Add(this.operatorGraphTabPage);
77      this.tabControl.Location = new System.Drawing.Point(0, 118);
78      this.tabControl.Name = "tabControl";
79      this.tabControl.SelectedIndex = 0;
80      this.tabControl.Size = new System.Drawing.Size(486, 364);
81      this.tabControl.TabIndex = 4;
82      //
83      // parametersTabPage
84      //
85      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
86      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
87      this.parametersTabPage.Name = "parametersTabPage";
88      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
89      this.parametersTabPage.Size = new System.Drawing.Size(478, 338);
90      this.parametersTabPage.TabIndex = 0;
91      this.parametersTabPage.Text = "Parameters";
92      this.parametersTabPage.UseVisualStyleBackColor = true;
93      //
94      // operatorGraphTabPage
95      //
96      this.operatorGraphTabPage.Controls.Add(this.operatorGraphView);
97      this.operatorGraphTabPage.Location = new System.Drawing.Point(4, 22);
98      this.operatorGraphTabPage.Name = "operatorGraphTabPage";
99      this.operatorGraphTabPage.Padding = new System.Windows.Forms.Padding(3);
100      this.operatorGraphTabPage.Size = new System.Drawing.Size(478, 338);
101      this.operatorGraphTabPage.TabIndex = 1;
102      this.operatorGraphTabPage.Text = "Operator Graph";
103      this.operatorGraphTabPage.UseVisualStyleBackColor = true;
104      //
105      // parameterCollectionView
106      //
107      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
108                  | System.Windows.Forms.AnchorStyles.Left)
109                  | System.Windows.Forms.AnchorStyles.Right)));
110      this.parameterCollectionView.Caption = "ParameterCollection";
111      this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
112      this.parameterCollectionView.Name = "parameterCollectionView";
113      this.parameterCollectionView.Size = new System.Drawing.Size(466, 326);
114      this.parameterCollectionView.TabIndex = 0;
115      //
116      // operatorGraphView
117      //
118      this.operatorGraphView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
119                  | System.Windows.Forms.AnchorStyles.Left)
120                  | System.Windows.Forms.AnchorStyles.Right)));
121      this.operatorGraphView.Caption = "Operator Graph";
122      this.operatorGraphView.Location = new System.Drawing.Point(6, 6);
123      this.operatorGraphView.Name = "operatorGraphView";
124      this.operatorGraphView.Size = new System.Drawing.Size(466, 326);
125      this.operatorGraphView.TabIndex = 0;
126      //
127      // CombinedOperatorView
128      //
129      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
130      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
131      this.Controls.Add(this.tabControl);
132      this.Name = "CombinedOperatorView";
133      this.Size = new System.Drawing.Size(486, 482);
134      this.Controls.SetChildIndex(this.tabControl, 0);
135      this.Controls.SetChildIndex(this.nameLabel, 0);
136      this.Controls.SetChildIndex(this.descriptionLabel, 0);
137      this.Controls.SetChildIndex(this.nameTextBox, 0);
138      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
139      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
140      this.tabControl.ResumeLayout(false);
141      this.parametersTabPage.ResumeLayout(false);
142      this.operatorGraphTabPage.ResumeLayout(false);
143      this.ResumeLayout(false);
144      this.PerformLayout();
145
146    }
147
148    #endregion
149
150    protected System.Windows.Forms.TabControl tabControl;
151    protected System.Windows.Forms.TabPage parametersTabPage;
152    protected System.Windows.Forms.TabPage operatorGraphTabPage;
153    protected HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
154    protected HeuristicLab.Core.Views.OperatorGraphView operatorGraphView;
155  }
156}
Note: See TracBrowser for help on using the repository browser.