Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 17432 was 17432, checked in by dpiringe, 4 years ago

#3026:

  • tree view is expanded on default now
  • fixed a bug with wrong anchors in JsonItemRangeControl and JsonItemValueControl
  • fixed a bug with wrong width for loaded user controls in ExportJsonDialog
File size: 3.2 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.Anchor = System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
53      this.numericRangeControl1.Name = "numericRangeControl1";
54      this.numericRangeControl1.Size = new System.Drawing.Size(487, 112);
55      this.numericRangeControl1.TabIndex = 16;
56      //
57      // JsonItemValueControl
58      //
59      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
60      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
61      this.Controls.Add(this.numericRangeControl1);
62      this.Controls.Add(this.label2);
63      this.Controls.Add(this.textBoxValue);
64      this.Name = "JsonItemValueControl";
65      this.Size = new System.Drawing.Size(500, 220);
66      this.Controls.SetChildIndex(this.textBoxValue, 0);
67      this.Controls.SetChildIndex(this.label2, 0);
68      this.Controls.SetChildIndex(this.numericRangeControl1, 0);
69      this.ResumeLayout(false);
70      this.PerformLayout();
71
72    }
73
74    #endregion
75
76    private System.Windows.Forms.TextBox textBoxValue;
77    private System.Windows.Forms.Label label2;
78    private NumericRangeControl numericRangeControl1;
79  }
80}
Note: See TracBrowser for help on using the repository browser.