Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ParameterConfigurationEncoding/HeuristicLab.Encodings.ParameterConfigurationEncoding.Views/3.3/ValueConfigurationViews/RangeView.Designer.cs @ 8535

Last change on this file since 8535 was 8524, checked in by jkarder, 12 years ago

#1853:

  • added problem instance selection to CreateExperimentDialog
  • adopted experiment creation
  • minor code improvements
File size: 6.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Encodings.ParameterConfigurationEncoding.Views {
23  partial class RangeView {
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 && (components != null)) {
35        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.label1 = new System.Windows.Forms.Label();
48      this.label2 = new System.Windows.Forms.Label();
49      this.lowerValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
50      this.upperValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
51      this.label3 = new System.Windows.Forms.Label();
52      this.stepSizeValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
53      this.SuspendLayout();
54      //
55      // label1
56      //
57      this.label1.AutoSize = true;
58      this.label1.Location = new System.Drawing.Point(3, 3);
59      this.label1.Name = "label1";
60      this.label1.Size = new System.Drawing.Size(36, 13);
61      this.label1.TabIndex = 0;
62      this.label1.Text = "Lower";
63      //
64      // label2
65      //
66      this.label2.AutoSize = true;
67      this.label2.Location = new System.Drawing.Point(3, 32);
68      this.label2.Name = "label2";
69      this.label2.Size = new System.Drawing.Size(36, 13);
70      this.label2.TabIndex = 1;
71      this.label2.Text = "Upper";
72      //
73      // lowerValueView
74      //
75      this.lowerValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
76                  | System.Windows.Forms.AnchorStyles.Right)));
77      this.lowerValueView.Caption = "StringConvertibleValue View";
78      this.lowerValueView.Content = null;
79      this.lowerValueView.LabelVisible = true;
80      this.lowerValueView.Location = new System.Drawing.Point(38, 0);
81      this.lowerValueView.Name = "lowerValueView";
82      this.lowerValueView.ReadOnly = false;
83      this.lowerValueView.Size = new System.Drawing.Size(396, 23);
84      this.lowerValueView.TabIndex = 2;
85      //
86      // upperValueView
87      //
88      this.upperValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
89                  | System.Windows.Forms.AnchorStyles.Right)));
90      this.upperValueView.Caption = "StringConvertibleValue View";
91      this.upperValueView.Content = null;
92      this.upperValueView.LabelVisible = true;
93      this.upperValueView.Location = new System.Drawing.Point(38, 29);
94      this.upperValueView.Name = "upperValueView";
95      this.upperValueView.ReadOnly = false;
96      this.upperValueView.Size = new System.Drawing.Size(396, 23);
97      this.upperValueView.TabIndex = 3;
98      //
99      // label3
100      //
101      this.label3.AutoSize = true;
102      this.label3.Location = new System.Drawing.Point(3, 61);
103      this.label3.Name = "label3";
104      this.label3.Size = new System.Drawing.Size(29, 13);
105      this.label3.TabIndex = 4;
106      this.label3.Text = "Step";
107      //
108      // stepSizeValueView
109      //
110      this.stepSizeValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
111                  | System.Windows.Forms.AnchorStyles.Right)));
112      this.stepSizeValueView.Caption = "StringConvertibleValue View";
113      this.stepSizeValueView.Content = null;
114      this.stepSizeValueView.LabelVisible = true;
115      this.stepSizeValueView.Location = new System.Drawing.Point(38, 58);
116      this.stepSizeValueView.Name = "stepSizeValueView";
117      this.stepSizeValueView.ReadOnly = false;
118      this.stepSizeValueView.Size = new System.Drawing.Size(396, 23);
119      this.stepSizeValueView.TabIndex = 5;
120      //
121      // RangeView
122      //
123      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
124      this.Controls.Add(this.label3);
125      this.Controls.Add(this.stepSizeValueView);
126      this.Controls.Add(this.label2);
127      this.Controls.Add(this.label1);
128      this.Controls.Add(this.upperValueView);
129      this.Controls.Add(this.lowerValueView);
130      this.Name = "RangeView";
131      this.Size = new System.Drawing.Size(434, 85);
132      this.ResumeLayout(false);
133      this.PerformLayout();
134
135    }
136
137    #endregion
138
139    private System.Windows.Forms.Label label1;
140    private System.Windows.Forms.Label label2;
141    private Data.Views.StringConvertibleValueView lowerValueView;
142    private Data.Views.StringConvertibleValueView upperValueView;
143    private System.Windows.Forms.Label label3;
144    private Data.Views.StringConvertibleValueView stepSizeValueView;
145
146  }
147}
Note: See TracBrowser for help on using the repository browser.