Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/JsonItemValidValuesControl.Designer.cs @ 17435

Last change on this file since 17435 was 17433, checked in by dpiringe, 5 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: 4.8 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemValidValuesControl {
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.tableOptions = new System.Windows.Forms.TableLayoutPanel();
27      this.groupBoxRange = new System.Windows.Forms.GroupBox();
28      this.comboBoxValues = new System.Windows.Forms.ComboBox();
29      this.label2 = new System.Windows.Forms.Label();
30      this.groupBoxRange.SuspendLayout();
31      this.SuspendLayout();
32      //
33      // tableOptions
34      //
35      this.tableOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
36            | System.Windows.Forms.AnchorStyles.Left)
37            | System.Windows.Forms.AnchorStyles.Right)));
38      this.tableOptions.AutoSize = true;
39      this.tableOptions.ColumnCount = 2;
40      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
41      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
42      this.tableOptions.Location = new System.Drawing.Point(6, 19);
43      this.tableOptions.Name = "tableOptions";
44      this.tableOptions.RowCount = 1;
45      this.tableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle());
46      this.tableOptions.Size = new System.Drawing.Size(478, 417);
47      this.tableOptions.TabIndex = 12;
48      //
49      // groupBoxRange
50      //
51      this.groupBoxRange.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
52            | System.Windows.Forms.AnchorStyles.Left)
53            | System.Windows.Forms.AnchorStyles.Right)));
54      this.groupBoxRange.AutoSize = true;
55      this.groupBoxRange.Controls.Add(this.tableOptions);
56      this.groupBoxRange.Location = new System.Drawing.Point(6, 128);
57      this.groupBoxRange.Name = "groupBoxRange";
58      this.groupBoxRange.Size = new System.Drawing.Size(490, 442);
59      this.groupBoxRange.TabIndex = 14;
60      this.groupBoxRange.TabStop = false;
61      this.groupBoxRange.Text = "Range";
62      //
63      // comboBoxValues
64      //
65      this.comboBoxValues.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
66            | System.Windows.Forms.AnchorStyles.Right)));
67      this.comboBoxValues.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
68      this.comboBoxValues.FormattingEnabled = true;
69      this.comboBoxValues.Location = new System.Drawing.Point(92, 101);
70      this.comboBoxValues.Name = "comboBoxValues";
71      this.comboBoxValues.Size = new System.Drawing.Size(404, 21);
72      this.comboBoxValues.TabIndex = 15;
73      //
74      // label2
75      //
76      this.label2.AutoSize = true;
77      this.label2.Location = new System.Drawing.Point(6, 104);
78      this.label2.Name = "label2";
79      this.label2.Size = new System.Drawing.Size(34, 13);
80      this.label2.TabIndex = 16;
81      this.label2.Text = "Value";
82      //
83      // JsonItemValidValuesControl
84      //
85      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
86      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
87      this.AutoSize = true;
88      this.Controls.Add(this.label2);
89      this.Controls.Add(this.comboBoxValues);
90      this.Controls.Add(this.groupBoxRange);
91      this.ForeColor = System.Drawing.Color.Black;
92      this.Name = "JsonItemValidValuesControl";
93      this.Size = new System.Drawing.Size(500, 576);
94      this.Controls.SetChildIndex(this.groupBoxRange, 0);
95      this.Controls.SetChildIndex(this.comboBoxValues, 0);
96      this.Controls.SetChildIndex(this.label2, 0);
97      this.groupBoxRange.ResumeLayout(false);
98      this.groupBoxRange.PerformLayout();
99      this.ResumeLayout(false);
100      this.PerformLayout();
101
102    }
103
104    #endregion
105    private System.Windows.Forms.TableLayoutPanel tableOptions;
106    private System.Windows.Forms.GroupBox groupBoxRange;
107    private System.Windows.Forms.ComboBox comboBoxValues;
108    private System.Windows.Forms.Label label2;
109  }
110}
Note: See TracBrowser for help on using the repository browser.