Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/JsonItemMultiValueControl.Designer.cs @ 17477

Last change on this file since 17477 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: 11.7 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemMultiValueControl<T> {
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.dataGridView = new System.Windows.Forms.DataGridView();
28      this.numericRangeControl1 = new HeuristicLab.JsonInterface.OptimizerIntegration.NumericRangeControl();
29      this.groupBox1 = new System.Windows.Forms.GroupBox();
30      this.textBoxColumns = new System.Windows.Forms.TextBox();
31      this.textBoxRows = new System.Windows.Forms.TextBox();
32      this.checkBoxColumns = new System.Windows.Forms.CheckBox();
33      this.checkBoxRows = new System.Windows.Forms.CheckBox();
34      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
35      this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
36      this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
37      this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
38      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
39      this.groupBox1.SuspendLayout();
40      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
41      this.tableLayoutPanel1.SuspendLayout();
42      this.tableLayoutPanel2.SuspendLayout();
43      this.tableLayoutPanel3.SuspendLayout();
44      this.SuspendLayout();
45      //
46      // dataGridView
47      //
48      this.dataGridView.AllowUserToAddRows = false;
49      this.dataGridView.AllowUserToDeleteRows = false;
50      this.dataGridView.AllowUserToResizeColumns = false;
51      this.dataGridView.AllowUserToResizeRows = false;
52      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
53      this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
54      this.dataGridView.Location = new System.Drawing.Point(0, 44);
55      this.dataGridView.Margin = new System.Windows.Forms.Padding(0);
56      this.dataGridView.Name = "dataGridView";
57      this.dataGridView.Size = new System.Drawing.Size(475, 172);
58      this.dataGridView.TabIndex = 13;
59      //
60      // numericRangeControl1
61      //
62      this.numericRangeControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
63            | System.Windows.Forms.AnchorStyles.Right)));
64      this.numericRangeControl1.Location = new System.Drawing.Point(0, 235);
65      this.numericRangeControl1.Margin = new System.Windows.Forms.Padding(0);
66      this.numericRangeControl1.Name = "numericRangeControl1";
67      this.numericRangeControl1.Size = new System.Drawing.Size(481, 63);
68      this.numericRangeControl1.TabIndex = 14;
69      //
70      // groupBox1
71      //
72      this.groupBox1.Controls.Add(this.tableLayoutPanel2);
73      this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
74      this.groupBox1.Location = new System.Drawing.Point(0, 0);
75      this.groupBox1.Margin = new System.Windows.Forms.Padding(0);
76      this.groupBox1.Name = "groupBox1";
77      this.groupBox1.Size = new System.Drawing.Size(481, 235);
78      this.groupBox1.TabIndex = 15;
79      this.groupBox1.TabStop = false;
80      this.groupBox1.Text = "Value";
81      //
82      // textBoxColumns
83      //
84      this.textBoxColumns.Dock = System.Windows.Forms.DockStyle.Fill;
85      this.errorProvider.SetIconAlignment(this.textBoxColumns, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
86      this.textBoxColumns.Location = new System.Drawing.Point(100, 22);
87      this.textBoxColumns.Margin = new System.Windows.Forms.Padding(0);
88      this.textBoxColumns.Name = "textBoxColumns";
89      this.textBoxColumns.ReadOnly = true;
90      this.textBoxColumns.Size = new System.Drawing.Size(375, 20);
91      this.textBoxColumns.TabIndex = 17;
92      this.textBoxColumns.Leave += new System.EventHandler(this.textBoxColumns_TextChanged);
93      this.textBoxColumns.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxColumns_Validating);
94      //
95      // textBoxRows
96      //
97      this.textBoxRows.Dock = System.Windows.Forms.DockStyle.Fill;
98      this.errorProvider.SetIconAlignment(this.textBoxRows, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
99      this.textBoxRows.Location = new System.Drawing.Point(100, 0);
100      this.textBoxRows.Margin = new System.Windows.Forms.Padding(0);
101      this.textBoxRows.Name = "textBoxRows";
102      this.textBoxRows.ReadOnly = true;
103      this.textBoxRows.Size = new System.Drawing.Size(375, 20);
104      this.textBoxRows.TabIndex = 16;
105      this.textBoxRows.Leave += new System.EventHandler(this.textBoxRows_TextChanged);
106      this.textBoxRows.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxRows_Validating);
107      //
108      // checkBoxColumns
109      //
110      this.checkBoxColumns.AutoSize = true;
111      this.checkBoxColumns.Dock = System.Windows.Forms.DockStyle.Fill;
112      this.checkBoxColumns.Location = new System.Drawing.Point(0, 22);
113      this.checkBoxColumns.Margin = new System.Windows.Forms.Padding(0);
114      this.checkBoxColumns.Name = "checkBoxColumns";
115      this.checkBoxColumns.Size = new System.Drawing.Size(100, 22);
116      this.checkBoxColumns.TabIndex = 15;
117      this.checkBoxColumns.Text = "Columns:";
118      this.checkBoxColumns.UseVisualStyleBackColor = true;
119      //
120      // checkBoxRows
121      //
122      this.checkBoxRows.AutoSize = true;
123      this.checkBoxRows.Dock = System.Windows.Forms.DockStyle.Fill;
124      this.checkBoxRows.Location = new System.Drawing.Point(0, 0);
125      this.checkBoxRows.Margin = new System.Windows.Forms.Padding(0);
126      this.checkBoxRows.Name = "checkBoxRows";
127      this.checkBoxRows.Size = new System.Drawing.Size(100, 22);
128      this.checkBoxRows.TabIndex = 14;
129      this.checkBoxRows.Text = "Rows:";
130      this.checkBoxRows.UseVisualStyleBackColor = true;
131      //
132      // errorProvider
133      //
134      this.errorProvider.ContainerControl = this;
135      //
136      // tableLayoutPanel1
137      //
138      this.tableLayoutPanel1.ColumnCount = 2;
139      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
140      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
141      this.tableLayoutPanel1.Controls.Add(this.textBoxColumns, 1, 1);
142      this.tableLayoutPanel1.Controls.Add(this.checkBoxRows, 0, 0);
143      this.tableLayoutPanel1.Controls.Add(this.textBoxRows, 1, 0);
144      this.tableLayoutPanel1.Controls.Add(this.checkBoxColumns, 0, 1);
145      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
146      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
147      this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
148      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
149      this.tableLayoutPanel1.RowCount = 2;
150      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
151      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
152      this.tableLayoutPanel1.Size = new System.Drawing.Size(475, 44);
153      this.tableLayoutPanel1.TabIndex = 16;
154      //
155      // tableLayoutPanel2
156      //
157      this.tableLayoutPanel2.ColumnCount = 1;
158      this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
159      this.tableLayoutPanel2.Controls.Add(this.dataGridView, 0, 1);
160      this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel1, 0, 0);
161      this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
162      this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
163      this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
164      this.tableLayoutPanel2.Name = "tableLayoutPanel2";
165      this.tableLayoutPanel2.RowCount = 2;
166      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 44F));
167      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
168      this.tableLayoutPanel2.Size = new System.Drawing.Size(475, 216);
169      this.tableLayoutPanel2.TabIndex = 17;
170      //
171      // tableLayoutPanel3
172      //
173      this.tableLayoutPanel3.ColumnCount = 1;
174      this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
175      this.tableLayoutPanel3.Controls.Add(this.numericRangeControl1, 0, 1);
176      this.tableLayoutPanel3.Controls.Add(this.groupBox1, 0, 0);
177      this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
178      this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
179      this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(0);
180      this.tableLayoutPanel3.Name = "tableLayoutPanel3";
181      this.tableLayoutPanel3.RowCount = 2;
182      this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
183      this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 63F));
184      this.tableLayoutPanel3.Size = new System.Drawing.Size(481, 298);
185      this.tableLayoutPanel3.TabIndex = 16;
186      //
187      // JsonItemMultiValueControl
188      //
189      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
190      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
191      this.Controls.Add(this.tableLayoutPanel3);
192      this.errorProvider.SetIconAlignment(this, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
193      this.Margin = new System.Windows.Forms.Padding(0);
194      this.Name = "JsonItemMultiValueControl";
195      this.Size = new System.Drawing.Size(481, 298);
196      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
197      this.groupBox1.ResumeLayout(false);
198      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
199      this.tableLayoutPanel1.ResumeLayout(false);
200      this.tableLayoutPanel1.PerformLayout();
201      this.tableLayoutPanel2.ResumeLayout(false);
202      this.tableLayoutPanel3.ResumeLayout(false);
203      this.ResumeLayout(false);
204
205    }
206
207    #endregion
208
209    private System.Windows.Forms.DataGridView dataGridView;
210    private NumericRangeControl numericRangeControl1;
211    private System.Windows.Forms.GroupBox groupBox1;
212    private System.Windows.Forms.CheckBox checkBoxColumns;
213    private System.Windows.Forms.CheckBox checkBoxRows;
214    private System.Windows.Forms.TextBox textBoxRows;
215    private System.Windows.Forms.TextBox textBoxColumns;
216    private System.Windows.Forms.ErrorProvider errorProvider;
217    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
218    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
219    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
220  }
221}
Note: See TracBrowser for help on using the repository browser.