Free cookie consent management tool by TermsFeed Policy Generator

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

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

#3026:

  • deleted INamedMatrixJsonItem and all corresponding classes/views, because of bad design
  • added ILookupJsonItem and IValueLookupJsonItem (incl. all corresponding implementations, VMs, Views)
  • added IResultJsonItem
  • changed type of property Control from JsonItemBaseControl to UserControl in IJsonItemVM (because the details control now builds up with linked user controls -> allows better construction of dynamic controls)
  • added all properties of INamedMatrixJsonItem in IMatrixJsonItem
  • refactored a lot of views for better usage (TableLayoutPanel is used a lot now -> for better item positioning)
  • property ActualName is now located in ILookupJsonItem instead of IJsonItem
File size: 7.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.components = new System.ComponentModel.Container();
27      this.tableOptions = new System.Windows.Forms.TableLayoutPanel();
28      this.comboBoxValues = new System.Windows.Forms.ComboBox();
29      this.label2 = new System.Windows.Forms.Label();
30      this.groupBoxRange = new System.Windows.Forms.GroupBox();
31      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
32      this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
33      this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
34      this.groupBoxRange.SuspendLayout();
35      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
36      this.tableLayoutPanel1.SuspendLayout();
37      this.tableLayoutPanel2.SuspendLayout();
38      this.SuspendLayout();
39      //
40      // tableOptions
41      //
42      this.tableOptions.AutoScroll = true;
43      this.tableOptions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
44      this.tableOptions.ColumnCount = 2;
45      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
46      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
47      this.tableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
48      this.tableOptions.Dock = System.Windows.Forms.DockStyle.Fill;
49      this.tableOptions.Location = new System.Drawing.Point(3, 16);
50      this.tableOptions.Name = "tableOptions";
51      this.tableOptions.RowCount = 1;
52      this.tableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle());
53      this.tableOptions.Size = new System.Drawing.Size(494, 217);
54      this.tableOptions.TabIndex = 12;
55      //
56      // comboBoxValues
57      //
58      this.comboBoxValues.Dock = System.Windows.Forms.DockStyle.Fill;
59      this.comboBoxValues.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
60      this.comboBoxValues.FormattingEnabled = true;
61      this.comboBoxValues.Location = new System.Drawing.Point(100, 0);
62      this.comboBoxValues.Margin = new System.Windows.Forms.Padding(0);
63      this.comboBoxValues.Name = "comboBoxValues";
64      this.comboBoxValues.Size = new System.Drawing.Size(400, 21);
65      this.comboBoxValues.TabIndex = 15;
66      //
67      // label2
68      //
69      this.label2.AutoSize = true;
70      this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
71      this.label2.Location = new System.Drawing.Point(0, 0);
72      this.label2.Margin = new System.Windows.Forms.Padding(0);
73      this.label2.Name = "label2";
74      this.label2.Size = new System.Drawing.Size(100, 22);
75      this.label2.TabIndex = 16;
76      this.label2.Text = "Value";
77      this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
78      //
79      // groupBoxRange
80      //
81      this.groupBoxRange.Controls.Add(this.tableOptions);
82      this.groupBoxRange.Dock = System.Windows.Forms.DockStyle.Fill;
83      this.groupBoxRange.Location = new System.Drawing.Point(0, 22);
84      this.groupBoxRange.Margin = new System.Windows.Forms.Padding(0);
85      this.groupBoxRange.Name = "groupBoxRange";
86      this.groupBoxRange.Size = new System.Drawing.Size(500, 236);
87      this.groupBoxRange.TabIndex = 17;
88      this.groupBoxRange.TabStop = false;
89      this.groupBoxRange.Text = "Range";
90      //
91      // errorProvider
92      //
93      this.errorProvider.ContainerControl = this;
94      //
95      // tableLayoutPanel1
96      //
97      this.tableLayoutPanel1.ColumnCount = 1;
98      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
99      this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
100      this.tableLayoutPanel1.Controls.Add(this.groupBoxRange, 0, 1);
101      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
102      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
103      this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
104      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
105      this.tableLayoutPanel1.RowCount = 2;
106      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 22F));
107      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
108      this.tableLayoutPanel1.Size = new System.Drawing.Size(500, 258);
109      this.tableLayoutPanel1.TabIndex = 18;
110      //
111      // tableLayoutPanel2
112      //
113      this.tableLayoutPanel2.ColumnCount = 2;
114      this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
115      this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
116      this.tableLayoutPanel2.Controls.Add(this.label2, 0, 0);
117      this.tableLayoutPanel2.Controls.Add(this.comboBoxValues, 1, 0);
118      this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
119      this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
120      this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
121      this.tableLayoutPanel2.Name = "tableLayoutPanel2";
122      this.tableLayoutPanel2.RowCount = 1;
123      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
124      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
125      this.tableLayoutPanel2.Size = new System.Drawing.Size(500, 22);
126      this.tableLayoutPanel2.TabIndex = 19;
127      //
128      // JsonItemValidValuesControl
129      //
130      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
131      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
132      this.Controls.Add(this.tableLayoutPanel1);
133      this.ForeColor = System.Drawing.Color.Black;
134      this.errorProvider.SetIconAlignment(this, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
135      this.Margin = new System.Windows.Forms.Padding(0);
136      this.Name = "JsonItemValidValuesControl";
137      this.Size = new System.Drawing.Size(500, 258);
138      this.groupBoxRange.ResumeLayout(false);
139      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
140      this.tableLayoutPanel1.ResumeLayout(false);
141      this.tableLayoutPanel2.ResumeLayout(false);
142      this.tableLayoutPanel2.PerformLayout();
143      this.ResumeLayout(false);
144
145    }
146
147    #endregion
148    private System.Windows.Forms.TableLayoutPanel tableOptions;
149    private System.Windows.Forms.ComboBox comboBoxValues;
150    private System.Windows.Forms.Label label2;
151    private System.Windows.Forms.GroupBox groupBoxRange;
152    private System.Windows.Forms.ErrorProvider errorProvider;
153    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
154    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
155  }
156}
Note: See TracBrowser for help on using the repository browser.