Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters.Views/3.3/ConstrainedValueParameterView.Designer.cs @ 2912

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

Operator architecture refactoring (#95)

  • worked on algorithms
File size: 6.2 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.Parameters.Views {
23  partial class ConstrainedValueParameterView<T> {
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.components = new System.ComponentModel.Container();
48      this.valueGroupBox = new System.Windows.Forms.GroupBox();
49      this.viewHost = new HeuristicLab.Core.Views.ViewHost();
50      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
51      this.valueComboBox = new System.Windows.Forms.ComboBox();
52      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
53      this.valueGroupBox.SuspendLayout();
54      this.SuspendLayout();
55      //
56      // dataTypeTextBox
57      //
58      this.dataTypeTextBox.Location = new System.Drawing.Point(80, 94);
59      this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
60      //
61      // nameTextBox
62      //
63      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
64      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
65      this.nameTextBox.Location = new System.Drawing.Point(80, 0);
66      this.nameTextBox.Size = new System.Drawing.Size(306, 20);
67      //
68      // descriptionTextBox
69      //
70      this.descriptionTextBox.Location = new System.Drawing.Point(80, 26);
71      this.descriptionTextBox.Size = new System.Drawing.Size(306, 62);
72      //
73      // valueGroupBox
74      //
75      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
76                  | System.Windows.Forms.AnchorStyles.Left)
77                  | System.Windows.Forms.AnchorStyles.Right)));
78      this.valueGroupBox.Controls.Add(this.viewHost);
79      this.valueGroupBox.Controls.Add(this.valueComboBox);
80      this.valueGroupBox.Location = new System.Drawing.Point(0, 120);
81      this.valueGroupBox.Name = "valueGroupBox";
82      this.valueGroupBox.Size = new System.Drawing.Size(386, 195);
83      this.valueGroupBox.TabIndex = 6;
84      this.valueGroupBox.TabStop = false;
85      this.valueGroupBox.Text = "&Value:";
86      //
87      // viewHost
88      //
89      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
90                  | System.Windows.Forms.AnchorStyles.Left)
91                  | System.Windows.Forms.AnchorStyles.Right)));
92      this.viewHost.Content = null;
93      this.viewHost.Location = new System.Drawing.Point(6, 46);
94      this.viewHost.Name = "viewHost";
95      this.viewHost.Size = new System.Drawing.Size(374, 143);
96      this.viewHost.TabIndex = 0;
97      this.viewHost.ViewType = null;
98      //
99      // valueComboBox
100      //
101      this.valueComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
102                  | System.Windows.Forms.AnchorStyles.Right)));
103      this.valueComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
104      this.valueComboBox.FormattingEnabled = true;
105      this.valueComboBox.Location = new System.Drawing.Point(6, 19);
106      this.valueComboBox.Name = "valueComboBox";
107      this.valueComboBox.Size = new System.Drawing.Size(374, 21);
108      this.valueComboBox.TabIndex = 1;
109      this.toolTip.SetToolTip(this.valueComboBox, "Selected Value");
110      this.valueComboBox.SelectedIndexChanged += new System.EventHandler(this.valueComboBox_SelectedIndexChanged);
111      //
112      // ConstrainedValueParameterView
113      //
114      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
115      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
116      this.Controls.Add(this.valueGroupBox);
117      this.Name = "ConstrainedValueParameterView";
118      this.Size = new System.Drawing.Size(386, 315);
119      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
120      this.Controls.SetChildIndex(this.descriptionLabel, 0);
121      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
122      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
123      this.Controls.SetChildIndex(this.nameTextBox, 0);
124      this.Controls.SetChildIndex(this.nameLabel, 0);
125      this.Controls.SetChildIndex(this.valueGroupBox, 0);
126      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
127      this.valueGroupBox.ResumeLayout(false);
128      this.ResumeLayout(false);
129      this.PerformLayout();
130
131    }
132
133    #endregion
134
135    private System.Windows.Forms.GroupBox valueGroupBox;
136    private HeuristicLab.Core.Views.ViewHost viewHost;
137    private System.Windows.Forms.ToolTip toolTip;
138    private System.Windows.Forms.ComboBox valueComboBox;
139  }
140}
Note: See TracBrowser for help on using the repository browser.