Free cookie consent management tool by TermsFeed Policy Generator

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

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

#3026:

  • added property Description in IJsonItem and updated all construction calls
  • updated UnsupportedJsonItem with unsupported property Description
  • updated JsonItemBaseControl and JsonItemVMBase for new property Description
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, 101);
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, 104);
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.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
52            | System.Windows.Forms.AnchorStyles.Right)));
53      this.numericRangeControl1.Location = new System.Drawing.Point(9, 127);
54      this.numericRangeControl1.Name = "numericRangeControl1";
55      this.numericRangeControl1.Size = new System.Drawing.Size(487, 112);
56      this.numericRangeControl1.TabIndex = 16;
57      //
58      // JsonItemValueControl
59      //
60      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
61      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
62      this.Controls.Add(this.numericRangeControl1);
63      this.Controls.Add(this.label2);
64      this.Controls.Add(this.textBoxValue);
65      this.Name = "JsonItemValueControl";
66      this.Size = new System.Drawing.Size(500, 247);
67      this.Controls.SetChildIndex(this.textBoxValue, 0);
68      this.Controls.SetChildIndex(this.label2, 0);
69      this.Controls.SetChildIndex(this.numericRangeControl1, 0);
70      this.ResumeLayout(false);
71      this.PerformLayout();
72
73    }
74
75    #endregion
76
77    private System.Windows.Forms.TextBox textBoxValue;
78    private System.Windows.Forms.Label label2;
79    private NumericRangeControl numericRangeControl1;
80  }
81}
Note: See TracBrowser for help on using the repository browser.