Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/NumericRangeControl.Designer.cs @ 17411

Last change on this file since 17411 was 17411, checked in by dpiringe, 5 years ago

#3026:

  • deleted JsonItemVM
  • reduced code duplicates in JsonItemValueControl
  • implemented logic for entering ranges -> automatically sets to min/max value of datatype when checkbox is not checked
File size: 5.7 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class NumericRangeControl {
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.textBoxFrom = new System.Windows.Forms.TextBox();
27      this.label6 = new System.Windows.Forms.Label();
28      this.groupBox2 = new System.Windows.Forms.GroupBox();
29      this.checkBoxFrom = new System.Windows.Forms.CheckBox();
30      this.checkBoxTo = new System.Windows.Forms.CheckBox();
31      this.textBoxTo = new System.Windows.Forms.TextBox();
32      this.label1 = new System.Windows.Forms.Label();
33      this.groupBox2.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // textBoxFrom
37      //
38      this.textBoxFrom.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
39            | System.Windows.Forms.AnchorStyles.Right)));
40      this.textBoxFrom.Location = new System.Drawing.Point(36, 36);
41      this.textBoxFrom.Name = "textBoxFrom";
42      this.textBoxFrom.ReadOnly = true;
43      this.textBoxFrom.Size = new System.Drawing.Size(164, 20);
44      this.textBoxFrom.TabIndex = 2;
45      //
46      // label6
47      //
48      this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
49            | System.Windows.Forms.AnchorStyles.Right)));
50      this.label6.AutoSize = true;
51      this.label6.Location = new System.Drawing.Point(7, 20);
52      this.label6.Name = "label6";
53      this.label6.Size = new System.Drawing.Size(30, 13);
54      this.label6.TabIndex = 0;
55      this.label6.Text = "From";
56      //
57      // groupBox2
58      //
59      this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
60            | System.Windows.Forms.AnchorStyles.Right)));
61      this.groupBox2.Controls.Add(this.checkBoxTo);
62      this.groupBox2.Controls.Add(this.textBoxTo);
63      this.groupBox2.Controls.Add(this.label1);
64      this.groupBox2.Controls.Add(this.checkBoxFrom);
65      this.groupBox2.Controls.Add(this.textBoxFrom);
66      this.groupBox2.Controls.Add(this.label6);
67      this.groupBox2.Location = new System.Drawing.Point(0, 3);
68      this.groupBox2.Name = "groupBox2";
69      this.groupBox2.Size = new System.Drawing.Size(206, 109);
70      this.groupBox2.TabIndex = 19;
71      this.groupBox2.TabStop = false;
72      this.groupBox2.Text = "Range";
73      //
74      // checkBoxFrom
75      //
76      this.checkBoxFrom.AutoSize = true;
77      this.checkBoxFrom.Location = new System.Drawing.Point(10, 39);
78      this.checkBoxFrom.Name = "checkBoxFrom";
79      this.checkBoxFrom.Size = new System.Drawing.Size(15, 14);
80      this.checkBoxFrom.TabIndex = 4;
81      this.checkBoxFrom.UseVisualStyleBackColor = true;
82      //
83      // checkBoxTo
84      //
85      this.checkBoxTo.AutoSize = true;
86      this.checkBoxTo.Location = new System.Drawing.Point(10, 78);
87      this.checkBoxTo.Name = "checkBoxTo";
88      this.checkBoxTo.Size = new System.Drawing.Size(15, 14);
89      this.checkBoxTo.TabIndex = 7;
90      this.checkBoxTo.UseVisualStyleBackColor = true;
91      //
92      // textBoxTo
93      //
94      this.textBoxTo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
95            | System.Windows.Forms.AnchorStyles.Right)));
96      this.textBoxTo.Location = new System.Drawing.Point(36, 75);
97      this.textBoxTo.Name = "textBoxTo";
98      this.textBoxTo.ReadOnly = true;
99      this.textBoxTo.Size = new System.Drawing.Size(164, 20);
100      this.textBoxTo.TabIndex = 6;
101      //
102      // label1
103      //
104      this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
105            | System.Windows.Forms.AnchorStyles.Right)));
106      this.label1.AutoSize = true;
107      this.label1.Location = new System.Drawing.Point(7, 59);
108      this.label1.Name = "label1";
109      this.label1.Size = new System.Drawing.Size(20, 13);
110      this.label1.TabIndex = 5;
111      this.label1.Text = "To";
112      //
113      // NumericRangeControl
114      //
115      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
116      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
117      this.Controls.Add(this.groupBox2);
118      this.Name = "NumericRangeControl";
119      this.Size = new System.Drawing.Size(206, 112);
120      this.groupBox2.ResumeLayout(false);
121      this.groupBox2.PerformLayout();
122      this.ResumeLayout(false);
123
124    }
125
126    #endregion
127    private System.Windows.Forms.TextBox textBoxFrom;
128    private System.Windows.Forms.Label label6;
129    private System.Windows.Forms.GroupBox groupBox2;
130    private System.Windows.Forms.CheckBox checkBoxTo;
131    private System.Windows.Forms.TextBox textBoxTo;
132    private System.Windows.Forms.Label label1;
133    private System.Windows.Forms.CheckBox checkBoxFrom;
134  }
135}
Note: See TracBrowser for help on using the repository browser.