Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/JsonItemValueControl.Designer.cs @ 17411

Last change on this file since 17411 was 17411, checked in by dpiringe, 4 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: 3.0 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemValueControl {
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.textBoxValue = new System.Windows.Forms.TextBox();
27      this.label2 = new System.Windows.Forms.Label();
28      this.numericRangeControl1 = new HeuristicLab.JsonInterface.OptimizerIntegration.NumericRangeControl();
29      this.SuspendLayout();
30      //
31      // textBoxValue
32      //
33      this.textBoxValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
34            | System.Windows.Forms.AnchorStyles.Right)));
35      this.textBoxValue.Location = new System.Drawing.Point(92, 75);
36      this.textBoxValue.Name = "textBoxValue";
37      this.textBoxValue.Size = new System.Drawing.Size(404, 20);
38      this.textBoxValue.TabIndex = 14;
39      //
40      // label2
41      //
42      this.label2.AutoSize = true;
43      this.label2.Location = new System.Drawing.Point(6, 78);
44      this.label2.Name = "label2";
45      this.label2.Size = new System.Drawing.Size(34, 13);
46      this.label2.TabIndex = 15;
47      this.label2.Text = "Value";
48      //
49      // numericRangeControl1
50      //
51      this.numericRangeControl1.Location = new System.Drawing.Point(9, 101);
52      this.numericRangeControl1.Name = "numericRangeControl1";
53      this.numericRangeControl1.Size = new System.Drawing.Size(487, 112);
54      this.numericRangeControl1.TabIndex = 16;
55      //
56      // JsonItemValueControl
57      //
58      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
59      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
60      this.Controls.Add(this.numericRangeControl1);
61      this.Controls.Add(this.label2);
62      this.Controls.Add(this.textBoxValue);
63      this.Name = "JsonItemValueControl";
64      this.Size = new System.Drawing.Size(500, 220);
65      this.Controls.SetChildIndex(this.textBoxValue, 0);
66      this.Controls.SetChildIndex(this.label2, 0);
67      this.Controls.SetChildIndex(this.numericRangeControl1, 0);
68      this.ResumeLayout(false);
69      this.PerformLayout();
70
71    }
72
73    #endregion
74
75    private System.Windows.Forms.TextBox textBoxValue;
76    private System.Windows.Forms.Label label2;
77    private NumericRangeControl numericRangeControl1;
78  }
79}
Note: See TracBrowser for help on using the repository browser.