Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/NumericRangeView.Designer.cs @ 4682

Last change on this file since 4682 was 4516, checked in by cneumuel, 14 years ago

initial prototype for Meta Optimization Problem (#1215)

File size: 5.1 KB
Line 
1namespace HeuristicLab.Problems.MetaOptimization.Views {
2  partial class NumericRangeView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.label1 = new System.Windows.Forms.Label();
27      this.label2 = new System.Windows.Forms.Label();
28      this.lowerValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
29      this.upperValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
30      this.label3 = new System.Windows.Forms.Label();
31      this.stepSizeValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
32      this.SuspendLayout();
33      //
34      // label1
35      //
36      this.label1.AutoSize = true;
37      this.label1.Location = new System.Drawing.Point(3, 3);
38      this.label1.Name = "label1";
39      this.label1.Size = new System.Drawing.Size(36, 13);
40      this.label1.TabIndex = 0;
41      this.label1.Text = "Lower";
42      //
43      // label2
44      //
45      this.label2.AutoSize = true;
46      this.label2.Location = new System.Drawing.Point(3, 32);
47      this.label2.Name = "label2";
48      this.label2.Size = new System.Drawing.Size(36, 13);
49      this.label2.TabIndex = 1;
50      this.label2.Text = "Upper";
51      //
52      // lowerValueView
53      //
54      this.lowerValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
55                  | System.Windows.Forms.AnchorStyles.Right)));
56      this.lowerValueView.Caption = "StringConvertibleValue View";
57      this.lowerValueView.Content = null;
58      this.lowerValueView.Location = new System.Drawing.Point(38, 0);
59      this.lowerValueView.Name = "lowerValueView";
60      this.lowerValueView.ReadOnly = false;
61      this.lowerValueView.Size = new System.Drawing.Size(396, 23);
62      this.lowerValueView.TabIndex = 2;
63      //
64      // upperValueView
65      //
66      this.upperValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
67                  | System.Windows.Forms.AnchorStyles.Right)));
68      this.upperValueView.Caption = "StringConvertibleValue View";
69      this.upperValueView.Content = null;
70      this.upperValueView.Location = new System.Drawing.Point(38, 29);
71      this.upperValueView.Name = "upperValueView";
72      this.upperValueView.ReadOnly = false;
73      this.upperValueView.Size = new System.Drawing.Size(396, 23);
74      this.upperValueView.TabIndex = 3;
75      //
76      // label3
77      //
78      this.label3.AutoSize = true;
79      this.label3.Location = new System.Drawing.Point(3, 61);
80      this.label3.Name = "label3";
81      this.label3.Size = new System.Drawing.Size(29, 13);
82      this.label3.TabIndex = 4;
83      this.label3.Text = "Step";
84      //
85      // stepSizeValueView
86      //
87      this.stepSizeValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
88                  | System.Windows.Forms.AnchorStyles.Right)));
89      this.stepSizeValueView.Caption = "StringConvertibleValue View";
90      this.stepSizeValueView.Content = null;
91      this.stepSizeValueView.Location = new System.Drawing.Point(38, 58);
92      this.stepSizeValueView.Name = "stepSizeValueView";
93      this.stepSizeValueView.ReadOnly = false;
94      this.stepSizeValueView.Size = new System.Drawing.Size(396, 23);
95      this.stepSizeValueView.TabIndex = 5;
96      //
97      // NumericRangeView
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101      this.Controls.Add(this.label3);
102      this.Controls.Add(this.stepSizeValueView);
103      this.Controls.Add(this.label2);
104      this.Controls.Add(this.label1);
105      this.Controls.Add(this.upperValueView);
106      this.Controls.Add(this.lowerValueView);
107      this.Name = "NumericRangeView";
108      this.Size = new System.Drawing.Size(434, 145);
109      this.ResumeLayout(false);
110      this.PerformLayout();
111
112    }
113
114    #endregion
115
116    private System.Windows.Forms.Label label1;
117    private System.Windows.Forms.Label label2;
118    private Data.Views.StringConvertibleValueView lowerValueView;
119    private Data.Views.StringConvertibleValueView upperValueView;
120    private System.Windows.Forms.Label label3;
121    private Data.Views.StringConvertibleValueView stepSizeValueView;
122
123  }
124}
Note: See TracBrowser for help on using the repository browser.