Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.Designer.cs @ 4745

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

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

File size: 10.2 KB
RevLine 
[2655]1#region License Information
2/* HeuristicLab
[2790]3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2655]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
[2714]22namespace HeuristicLab.Parameters.Views {
[2756]23  partial class ValueLookupParameterView<T> {
[2655]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() {
[2756]48      this.valueGroupBox = new System.Windows.Forms.GroupBox();
[4332]49      this.showInRunCheckBox = new System.Windows.Forms.CheckBox();
[4011]50      this.valueViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
[2756]51      this.clearValueButton = new System.Windows.Forms.Button();
52      this.setValueButton = new System.Windows.Forms.Button();
[2655]53      this.actualNameTextBox = new System.Windows.Forms.TextBox();
54      this.actualNameLabel = new System.Windows.Forms.Label();
[2676]55      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
[2756]56      this.valueGroupBox.SuspendLayout();
[2655]57      this.SuspendLayout();
58      //
59      // dataTypeLabel
60      //
[2917]61      this.dataTypeLabel.Location = new System.Drawing.Point(3, 81);
[2655]62      this.dataTypeLabel.TabIndex = 6;
63      //
64      // dataTypeTextBox
65      //
[2917]66      this.dataTypeTextBox.Location = new System.Drawing.Point(80, 78);
[2655]67      this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
68      this.dataTypeTextBox.TabIndex = 7;
69      //
70      // nameTextBox
71      //
[2676]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);
[2655]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);
[2917]85      this.descriptionTextBox.Size = new System.Drawing.Size(306, 20);
[2655]86      this.descriptionTextBox.TabIndex = 5;
87      //
[2756]88      // valueGroupBox
[2655]89      //
[4522]90      this.valueGroupBox.AllowDrop = true;
[2756]91      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
[2655]92                  | System.Windows.Forms.AnchorStyles.Left)
93                  | System.Windows.Forms.AnchorStyles.Right)));
[4332]94      this.valueGroupBox.Controls.Add(this.showInRunCheckBox);
[4011]95      this.valueGroupBox.Controls.Add(this.valueViewHost);
[2756]96      this.valueGroupBox.Controls.Add(this.clearValueButton);
97      this.valueGroupBox.Controls.Add(this.setValueButton);
[2917]98      this.valueGroupBox.Location = new System.Drawing.Point(0, 104);
[2756]99      this.valueGroupBox.Name = "valueGroupBox";
[2917]100      this.valueGroupBox.Size = new System.Drawing.Size(386, 211);
[2756]101      this.valueGroupBox.TabIndex = 8;
102      this.valueGroupBox.TabStop = false;
[2924]103      this.valueGroupBox.Text = "Value";
[4522]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);
[2655]107      //
[4332]108      // showInRunCheckBox
[2655]109      //
[4332]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      //
[4011]125      this.valueViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
[2676]126                  | System.Windows.Forms.AnchorStyles.Left)
127                  | System.Windows.Forms.AnchorStyles.Right)));
[4332]128      this.valueViewHost.Caption = "View";
129      this.valueViewHost.Content = null;
[4011]130      this.valueViewHost.Location = new System.Drawing.Point(6, 49);
131      this.valueViewHost.Name = "valueViewHost";
[4332]132      this.valueViewHost.ReadOnly = false;
[4011]133      this.valueViewHost.Size = new System.Drawing.Size(374, 156);
[4332]134      this.valueViewHost.TabIndex = 3;
[4011]135      this.valueViewHost.ViewType = null;
[4522]136
[2655]137      //
[2756]138      // clearValueButton
[2676]139      //
[2756]140      this.clearValueButton.Enabled = false;
141      this.clearValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
[2796]142      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
[2756]143      this.clearValueButton.Name = "clearValueButton";
[2796]144      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
[2756]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);
[2676]149      //
[2756]150      // setValueButton
[2676]151      //
[3306]152      this.setValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Edit;
[2756]153      this.setValueButton.Location = new System.Drawing.Point(6, 19);
154      this.setValueButton.Name = "setValueButton";
[2796]155      this.setValueButton.Size = new System.Drawing.Size(24, 24);
[2756]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);
[2676]160      //
[2655]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      //
[2756]180      // ValueLookupParameterView
[2655]181      //
182      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
183      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[2676]184      this.Controls.Add(this.actualNameTextBox);
[2655]185      this.Controls.Add(this.actualNameLabel);
[2756]186      this.Controls.Add(this.valueGroupBox);
187      this.Name = "ValueLookupParameterView";
[2655]188      this.Size = new System.Drawing.Size(386, 315);
189      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
190      this.Controls.SetChildIndex(this.descriptionLabel, 0);
[2676]191      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
192      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
193      this.Controls.SetChildIndex(this.nameTextBox, 0);
[2756]194      this.Controls.SetChildIndex(this.nameLabel, 0);
195      this.Controls.SetChildIndex(this.valueGroupBox, 0);
196      this.Controls.SetChildIndex(this.actualNameLabel, 0);
[2655]197      this.Controls.SetChildIndex(this.actualNameTextBox, 0);
[2676]198      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
[2756]199      this.valueGroupBox.ResumeLayout(false);
[4332]200      this.valueGroupBox.PerformLayout();
[2655]201      this.ResumeLayout(false);
202      this.PerformLayout();
203
204    }
205
206    #endregion
207
[2756]208    protected System.Windows.Forms.GroupBox valueGroupBox;
[4011]209    protected HeuristicLab.MainForm.WindowsForms.ViewHost valueViewHost;
[2756]210    protected System.Windows.Forms.Button setValueButton;
211    protected System.Windows.Forms.Button clearValueButton;
[2676]212    protected System.Windows.Forms.TextBox actualNameTextBox;
213    protected System.Windows.Forms.Label actualNameLabel;
[4332]214    protected System.Windows.Forms.CheckBox showInRunCheckBox;
[2655]215  }
216}
Note: See TracBrowser for help on using the repository browser.