Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 4830 was 4830, checked in by cneumuel, 13 years ago

#1215 worked on metaoptimization

File size: 5.2 KB
Line 
1namespace HeuristicLab.Problems.MetaOptimization.Views {
2  partial class IntValueRangeView {
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.LabelVisible = true;
59      this.lowerValueView.Location = new System.Drawing.Point(38, 0);
60      this.lowerValueView.Name = "lowerValueView";
61      this.lowerValueView.ReadOnly = false;
62      this.lowerValueView.Size = new System.Drawing.Size(396, 23);
63      this.lowerValueView.TabIndex = 2;
64      //
65      // upperValueView
66      //
67      this.upperValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
68                  | System.Windows.Forms.AnchorStyles.Right)));
69      this.upperValueView.Caption = "StringConvertibleValue View";
70      this.upperValueView.Content = null;
71      this.upperValueView.LabelVisible = true;
72      this.upperValueView.Location = new System.Drawing.Point(38, 29);
73      this.upperValueView.Name = "upperValueView";
74      this.upperValueView.ReadOnly = false;
75      this.upperValueView.Size = new System.Drawing.Size(396, 23);
76      this.upperValueView.TabIndex = 3;
77      //
78      // label3
79      //
80      this.label3.AutoSize = true;
81      this.label3.Location = new System.Drawing.Point(3, 61);
82      this.label3.Name = "label3";
83      this.label3.Size = new System.Drawing.Size(29, 13);
84      this.label3.TabIndex = 4;
85      this.label3.Text = "Step";
86      //
87      // stepSizeValueView
88      //
89      this.stepSizeValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
90                  | System.Windows.Forms.AnchorStyles.Right)));
91      this.stepSizeValueView.Caption = "StringConvertibleValue View";
92      this.stepSizeValueView.Content = null;
93      this.stepSizeValueView.LabelVisible = true;
94      this.stepSizeValueView.Location = new System.Drawing.Point(38, 58);
95      this.stepSizeValueView.Name = "stepSizeValueView";
96      this.stepSizeValueView.ReadOnly = false;
97      this.stepSizeValueView.Size = new System.Drawing.Size(396, 23);
98      this.stepSizeValueView.TabIndex = 5;
99      //
100      // IntValueRangeView
101      //
102      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
104      this.Controls.Add(this.label3);
105      this.Controls.Add(this.stepSizeValueView);
106      this.Controls.Add(this.label2);
107      this.Controls.Add(this.label1);
108      this.Controls.Add(this.upperValueView);
109      this.Controls.Add(this.lowerValueView);
110      this.Name = "IntValueRangeView";
111      this.Size = new System.Drawing.Size(434, 85);
112      this.ResumeLayout(false);
113      this.PerformLayout();
114
115    }
116
117    #endregion
118
119    private System.Windows.Forms.Label label1;
120    private System.Windows.Forms.Label label2;
121    private Data.Views.StringConvertibleValueView lowerValueView;
122    private Data.Views.StringConvertibleValueView upperValueView;
123    private System.Windows.Forms.Label label3;
124    private Data.Views.StringConvertibleValueView stepSizeValueView;
125
126  }
127}
Note: See TracBrowser for help on using the repository browser.