Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 17473 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: 6.5 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.components = new System.ComponentModel.Container();
27      this.textBoxValue = new System.Windows.Forms.TextBox();
28      this.label2 = new System.Windows.Forms.Label();
29      this.numericRangeControl1 = new HeuristicLab.JsonInterface.OptimizerIntegration.NumericRangeControl();
30      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
31      this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
32      this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
33      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
34      this.tableLayoutPanel1.SuspendLayout();
35      this.tableLayoutPanel2.SuspendLayout();
36      this.SuspendLayout();
37      //
38      // textBoxValue
39      //
40      this.textBoxValue.Dock = System.Windows.Forms.DockStyle.Fill;
41      this.textBoxValue.Location = new System.Drawing.Point(100, 0);
42      this.textBoxValue.Margin = new System.Windows.Forms.Padding(0);
43      this.textBoxValue.Name = "textBoxValue";
44      this.textBoxValue.Size = new System.Drawing.Size(577, 20);
45      this.textBoxValue.TabIndex = 14;
46      this.textBoxValue.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxValue_Validating);
47      //
48      // label2
49      //
50      this.label2.AutoSize = true;
51      this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
52      this.label2.Location = new System.Drawing.Point(0, 0);
53      this.label2.Margin = new System.Windows.Forms.Padding(0);
54      this.label2.Name = "label2";
55      this.label2.Size = new System.Drawing.Size(100, 22);
56      this.label2.TabIndex = 15;
57      this.label2.Text = "Value";
58      this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
59      //
60      // numericRangeControl1
61      //
62      this.numericRangeControl1.Dock = System.Windows.Forms.DockStyle.Fill;
63      this.numericRangeControl1.Location = new System.Drawing.Point(0, 22);
64      this.numericRangeControl1.Margin = new System.Windows.Forms.Padding(0);
65      this.numericRangeControl1.Name = "numericRangeControl1";
66      this.numericRangeControl1.Size = new System.Drawing.Size(677, 66);
67      this.numericRangeControl1.TabIndex = 16;
68      //
69      // errorProvider
70      //
71      this.errorProvider.ContainerControl = this;
72      //
73      // tableLayoutPanel1
74      //
75      this.tableLayoutPanel1.ColumnCount = 2;
76      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
77      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
78      this.tableLayoutPanel1.Controls.Add(this.label2, 0, 0);
79      this.tableLayoutPanel1.Controls.Add(this.textBoxValue, 1, 0);
80      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
81      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
82      this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
83      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
84      this.tableLayoutPanel1.RowCount = 1;
85      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
86      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 22F));
87      this.tableLayoutPanel1.Size = new System.Drawing.Size(677, 22);
88      this.tableLayoutPanel1.TabIndex = 17;
89      //
90      // tableLayoutPanel2
91      //
92      this.tableLayoutPanel2.ColumnCount = 1;
93      this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
94      this.tableLayoutPanel2.Controls.Add(this.numericRangeControl1, 0, 1);
95      this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel1, 0, 0);
96      this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
97      this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
98      this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
99      this.tableLayoutPanel2.Name = "tableLayoutPanel2";
100      this.tableLayoutPanel2.RowCount = 2;
101      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 22F));
102      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
103      this.tableLayoutPanel2.Size = new System.Drawing.Size(677, 88);
104      this.tableLayoutPanel2.TabIndex = 18;
105      //
106      // JsonItemValueControl
107      //
108      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
109      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
110      this.Controls.Add(this.tableLayoutPanel2);
111      this.errorProvider.SetIconAlignment(this, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
112      this.Margin = new System.Windows.Forms.Padding(0);
113      this.Name = "JsonItemValueControl";
114      this.Size = new System.Drawing.Size(677, 88);
115      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
116      this.tableLayoutPanel1.ResumeLayout(false);
117      this.tableLayoutPanel1.PerformLayout();
118      this.tableLayoutPanel2.ResumeLayout(false);
119      this.ResumeLayout(false);
120
121    }
122
123    #endregion
124
125    private System.Windows.Forms.TextBox textBoxValue;
126    private System.Windows.Forms.Label label2;
127    private NumericRangeControl numericRangeControl1;
128    private System.Windows.Forms.ErrorProvider errorProvider;
129    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
130    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
131  }
132}
Note: See TracBrowser for help on using the repository browser.