Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.2/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.Designer.cs @ 13398

Last change on this file since 13398 was 4522, checked in by mkommend, 14 years ago

Enabled dropping of values on various views (ticket #1155).

File size: 10.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 ValueLookupParameterView<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.showInRunCheckBox = new System.Windows.Forms.CheckBox();
50      this.valueViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
51      this.clearValueButton = new System.Windows.Forms.Button();
52      this.setValueButton = new System.Windows.Forms.Button();
53      this.actualNameTextBox = new System.Windows.Forms.TextBox();
54      this.actualNameLabel = new System.Windows.Forms.Label();
55      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
56      this.valueGroupBox.SuspendLayout();
57      this.SuspendLayout();
58      //
59      // dataTypeLabel
60      //
61      this.dataTypeLabel.Location = new System.Drawing.Point(3, 81);
62      this.dataTypeLabel.TabIndex = 6;
63      //
64      // dataTypeTextBox
65      //
66      this.dataTypeTextBox.Location = new System.Drawing.Point(80, 78);
67      this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
68      this.dataTypeTextBox.TabIndex = 7;
69      //
70      // nameTextBox
71      //
72      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
73      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
74      this.nameTextBox.Location = new System.Drawing.Point(80, 0);
75      this.nameTextBox.Size = new System.Drawing.Size(306, 20);
76      //
77      // descriptionLabel
78      //
79      this.descriptionLabel.Location = new System.Drawing.Point(3, 55);
80      this.descriptionLabel.TabIndex = 4;
81      //
82      // descriptionTextBox
83      //
84      this.descriptionTextBox.Location = new System.Drawing.Point(80, 52);
85      this.descriptionTextBox.Size = new System.Drawing.Size(306, 20);
86      this.descriptionTextBox.TabIndex = 5;
87      //
88      // valueGroupBox
89      //
90      this.valueGroupBox.AllowDrop = true;
91      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
92                  | System.Windows.Forms.AnchorStyles.Left)
93                  | System.Windows.Forms.AnchorStyles.Right)));
94      this.valueGroupBox.Controls.Add(this.showInRunCheckBox);
95      this.valueGroupBox.Controls.Add(this.valueViewHost);
96      this.valueGroupBox.Controls.Add(this.clearValueButton);
97      this.valueGroupBox.Controls.Add(this.setValueButton);
98      this.valueGroupBox.Location = new System.Drawing.Point(0, 104);
99      this.valueGroupBox.Name = "valueGroupBox";
100      this.valueGroupBox.Size = new System.Drawing.Size(386, 211);
101      this.valueGroupBox.TabIndex = 8;
102      this.valueGroupBox.TabStop = false;
103      this.valueGroupBox.Text = "Value";
104      this.valueGroupBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragDrop);
105      this.valueGroupBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragEnterOver);
106      this.valueGroupBox.DragOver += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragEnterOver);
107      //
108      // showInRunCheckBox
109      //
110      this.showInRunCheckBox.AutoSize = true;
111      this.showInRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
112      this.showInRunCheckBox.Checked = true;
113      this.showInRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
114      this.showInRunCheckBox.Location = new System.Drawing.Point(66, 24);
115      this.showInRunCheckBox.Name = "showInRunCheckBox";
116      this.showInRunCheckBox.Size = new System.Drawing.Size(90, 17);
117      this.showInRunCheckBox.TabIndex = 2;
118      this.showInRunCheckBox.Text = "&Show in Run:";
119      this.toolTip.SetToolTip(this.showInRunCheckBox, "Check to show the value of this parameter in each run.");
120      this.showInRunCheckBox.UseVisualStyleBackColor = true;
121      this.showInRunCheckBox.CheckedChanged += new System.EventHandler(this.showInRunCheckBox_CheckedChanged);
122      //
123      // valueViewHost
124      //
125      this.valueViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
126                  | System.Windows.Forms.AnchorStyles.Left)
127                  | System.Windows.Forms.AnchorStyles.Right)));
128      this.valueViewHost.Caption = "View";
129      this.valueViewHost.Content = null;
130      this.valueViewHost.Location = new System.Drawing.Point(6, 49);
131      this.valueViewHost.Name = "valueViewHost";
132      this.valueViewHost.ReadOnly = false;
133      this.valueViewHost.Size = new System.Drawing.Size(374, 156);
134      this.valueViewHost.TabIndex = 3;
135      this.valueViewHost.ViewType = null;
136
137      //
138      // clearValueButton
139      //
140      this.clearValueButton.Enabled = false;
141      this.clearValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
142      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
143      this.clearValueButton.Name = "clearValueButton";
144      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
145      this.clearValueButton.TabIndex = 1;
146      this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
147      this.clearValueButton.UseVisualStyleBackColor = true;
148      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
149      //
150      // setValueButton
151      //
152      this.setValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Edit;
153      this.setValueButton.Location = new System.Drawing.Point(6, 19);
154      this.setValueButton.Name = "setValueButton";
155      this.setValueButton.Size = new System.Drawing.Size(24, 24);
156      this.setValueButton.TabIndex = 0;
157      this.toolTip.SetToolTip(this.setValueButton, "Set Value");
158      this.setValueButton.UseVisualStyleBackColor = true;
159      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
160      //
161      // actualNameTextBox
162      //
163      this.actualNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
164                  | System.Windows.Forms.AnchorStyles.Right)));
165      this.actualNameTextBox.Location = new System.Drawing.Point(80, 26);
166      this.actualNameTextBox.Name = "actualNameTextBox";
167      this.actualNameTextBox.Size = new System.Drawing.Size(306, 20);
168      this.actualNameTextBox.TabIndex = 3;
169      this.actualNameTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
170      //
171      // actualNameLabel
172      //
173      this.actualNameLabel.AutoSize = true;
174      this.actualNameLabel.Location = new System.Drawing.Point(3, 29);
175      this.actualNameLabel.Name = "actualNameLabel";
176      this.actualNameLabel.Size = new System.Drawing.Size(71, 13);
177      this.actualNameLabel.TabIndex = 2;
178      this.actualNameLabel.Text = "&Actual Name:";
179      //
180      // ValueLookupParameterView
181      //
182      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
183      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
184      this.Controls.Add(this.actualNameTextBox);
185      this.Controls.Add(this.actualNameLabel);
186      this.Controls.Add(this.valueGroupBox);
187      this.Name = "ValueLookupParameterView";
188      this.Size = new System.Drawing.Size(386, 315);
189      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
190      this.Controls.SetChildIndex(this.descriptionLabel, 0);
191      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
192      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
193      this.Controls.SetChildIndex(this.nameTextBox, 0);
194      this.Controls.SetChildIndex(this.nameLabel, 0);
195      this.Controls.SetChildIndex(this.valueGroupBox, 0);
196      this.Controls.SetChildIndex(this.actualNameLabel, 0);
197      this.Controls.SetChildIndex(this.actualNameTextBox, 0);
198      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
199      this.valueGroupBox.ResumeLayout(false);
200      this.valueGroupBox.PerformLayout();
201      this.ResumeLayout(false);
202      this.PerformLayout();
203
204    }
205
206    #endregion
207
208    protected System.Windows.Forms.GroupBox valueGroupBox;
209    protected HeuristicLab.MainForm.WindowsForms.ViewHost valueViewHost;
210    protected System.Windows.Forms.Button setValueButton;
211    protected System.Windows.Forms.Button clearValueButton;
212    protected System.Windows.Forms.TextBox actualNameTextBox;
213    protected System.Windows.Forms.Label actualNameLabel;
214    protected System.Windows.Forms.CheckBox showInRunCheckBox;
215  }
216}
Note: See TracBrowser for help on using the repository browser.