Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters.Views/3.3/OptionalValueParameterView.Designer.cs @ 2924

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

Operator architecture refactoring (#95)

  • implemented reviewers' comments on version r2917.
File size: 7.7 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 OptionalValueParameterView<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 (typeSelectorDialog != null) typeSelectorDialog.Dispose();
36        if (components != null) components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.valueGroupBox = new System.Windows.Forms.GroupBox();
49      this.valuePanel = new System.Windows.Forms.Panel();
50      this.viewHost = new HeuristicLab.Core.Views.ViewHost();
51      this.clearValueButton = new System.Windows.Forms.Button();
52      this.setValueButton = new System.Windows.Forms.Button();
53      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
54      this.valueGroupBox.SuspendLayout();
55      this.valuePanel.SuspendLayout();
56      this.SuspendLayout();
57      //
58      // dataTypeLabel
59      //
60      this.dataTypeLabel.Location = new System.Drawing.Point(3, 55);
61      //
62      // dataTypeTextBox
63      //
64      this.dataTypeTextBox.Location = new System.Drawing.Point(80, 52);
65      this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
66      //
67      // nameTextBox
68      //
69      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
70      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
71      this.nameTextBox.Location = new System.Drawing.Point(80, 0);
72      this.nameTextBox.Size = new System.Drawing.Size(306, 20);
73      //
74      // descriptionTextBox
75      //
76      this.descriptionTextBox.Location = new System.Drawing.Point(80, 26);
77      this.descriptionTextBox.Size = new System.Drawing.Size(306, 20);
78      //
79      // valueGroupBox
80      //
81      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
82                  | System.Windows.Forms.AnchorStyles.Left)
83                  | System.Windows.Forms.AnchorStyles.Right)));
84      this.valueGroupBox.Controls.Add(this.valuePanel);
85      this.valueGroupBox.Controls.Add(this.clearValueButton);
86      this.valueGroupBox.Controls.Add(this.setValueButton);
87      this.valueGroupBox.Location = new System.Drawing.Point(0, 78);
88      this.valueGroupBox.Name = "valueGroupBox";
89      this.valueGroupBox.Size = new System.Drawing.Size(386, 237);
90      this.valueGroupBox.TabIndex = 6;
91      this.valueGroupBox.TabStop = false;
92      this.valueGroupBox.Text = "Value";
93      //
94      // valuePanel
95      //
96      this.valuePanel.AllowDrop = true;
97      this.valuePanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
98                  | System.Windows.Forms.AnchorStyles.Left)
99                  | System.Windows.Forms.AnchorStyles.Right)));
100      this.valuePanel.Controls.Add(this.viewHost);
101      this.valuePanel.Location = new System.Drawing.Point(6, 49);
102      this.valuePanel.Name = "valuePanel";
103      this.valuePanel.Size = new System.Drawing.Size(374, 182);
104      this.valuePanel.TabIndex = 0;
105      this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
106      this.valuePanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragDrop);
107      this.valuePanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
108      //
109      // viewHost
110      //
111      this.viewHost.Content = null;
112      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
113      this.viewHost.Location = new System.Drawing.Point(0, 0);
114      this.viewHost.Name = "viewHost";
115      this.viewHost.Size = new System.Drawing.Size(374, 182);
116      this.viewHost.TabIndex = 0;
117      this.viewHost.ViewType = null;
118      //
119      // clearValueButton
120      //
121      this.clearValueButton.Enabled = false;
122      this.clearValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
123      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
124      this.clearValueButton.Name = "clearValueButton";
125      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
126      this.clearValueButton.TabIndex = 1;
127      this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
128      this.clearValueButton.UseVisualStyleBackColor = true;
129      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
130      //
131      // setValueButton
132      //
133      this.setValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
134      this.setValueButton.Location = new System.Drawing.Point(6, 19);
135      this.setValueButton.Name = "setValueButton";
136      this.setValueButton.Size = new System.Drawing.Size(24, 24);
137      this.setValueButton.TabIndex = 0;
138      this.toolTip.SetToolTip(this.setValueButton, "Set Value");
139      this.setValueButton.UseVisualStyleBackColor = true;
140      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
141      //
142      // OptionalValueParameterView
143      //
144      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
145      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
146      this.Controls.Add(this.valueGroupBox);
147      this.Name = "OptionalValueParameterView";
148      this.Size = new System.Drawing.Size(386, 315);
149      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
150      this.Controls.SetChildIndex(this.descriptionLabel, 0);
151      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
152      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
153      this.Controls.SetChildIndex(this.nameTextBox, 0);
154      this.Controls.SetChildIndex(this.nameLabel, 0);
155      this.Controls.SetChildIndex(this.valueGroupBox, 0);
156      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
157      this.valueGroupBox.ResumeLayout(false);
158      this.valuePanel.ResumeLayout(false);
159      this.ResumeLayout(false);
160      this.PerformLayout();
161
162    }
163
164    #endregion
165
166    protected System.Windows.Forms.GroupBox valueGroupBox;
167    protected System.Windows.Forms.Panel valuePanel;
168    protected HeuristicLab.Core.Views.ViewHost viewHost;
169    protected System.Windows.Forms.Button setValueButton;
170    protected System.Windows.Forms.Button clearValueButton;
171  }
172}
Note: See TracBrowser for help on using the repository browser.