Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/NumericRangeControl.Designer.cs @ 17473

Last change on this file since 17473 was 17471, checked in by dpiringe, 5 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.9 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class NumericRangeControl {
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.groupBox2 = new System.Windows.Forms.GroupBox();
28      this.checkBoxTo = new System.Windows.Forms.CheckBox();
29      this.textBoxTo = new System.Windows.Forms.TextBox();
30      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
31      this.textBoxFrom = new System.Windows.Forms.TextBox();
32      this.checkBoxFrom = new System.Windows.Forms.CheckBox();
33      this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
34      this.groupBox2.SuspendLayout();
35      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
36      this.tableLayoutPanel2.SuspendLayout();
37      this.SuspendLayout();
38      //
39      // groupBox2
40      //
41      this.groupBox2.Controls.Add(this.tableLayoutPanel2);
42      this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
43      this.groupBox2.Location = new System.Drawing.Point(0, 0);
44      this.groupBox2.Margin = new System.Windows.Forms.Padding(0);
45      this.groupBox2.Name = "groupBox2";
46      this.groupBox2.Size = new System.Drawing.Size(526, 63);
47      this.groupBox2.TabIndex = 19;
48      this.groupBox2.TabStop = false;
49      this.groupBox2.Text = "Range";
50      //
51      // checkBoxTo
52      //
53      this.checkBoxTo.AutoSize = true;
54      this.checkBoxTo.Dock = System.Windows.Forms.DockStyle.Fill;
55      this.checkBoxTo.Location = new System.Drawing.Point(0, 22);
56      this.checkBoxTo.Margin = new System.Windows.Forms.Padding(0);
57      this.checkBoxTo.Name = "checkBoxTo";
58      this.checkBoxTo.Size = new System.Drawing.Size(100, 22);
59      this.checkBoxTo.TabIndex = 7;
60      this.checkBoxTo.Text = "To:";
61      this.checkBoxTo.UseVisualStyleBackColor = true;
62      //
63      // textBoxTo
64      //
65      this.textBoxTo.Dock = System.Windows.Forms.DockStyle.Fill;
66      this.errorProvider.SetIconAlignment(this.textBoxTo, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
67      this.textBoxTo.Location = new System.Drawing.Point(100, 22);
68      this.textBoxTo.Margin = new System.Windows.Forms.Padding(0);
69      this.textBoxTo.Name = "textBoxTo";
70      this.textBoxTo.ReadOnly = true;
71      this.textBoxTo.Size = new System.Drawing.Size(420, 20);
72      this.textBoxTo.TabIndex = 6;
73      this.textBoxTo.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxTo_Validating);
74      //
75      // errorProvider
76      //
77      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
78      this.errorProvider.ContainerControl = this;
79      //
80      // textBoxFrom
81      //
82      this.textBoxFrom.Dock = System.Windows.Forms.DockStyle.Fill;
83      this.errorProvider.SetIconAlignment(this.textBoxFrom, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
84      this.textBoxFrom.Location = new System.Drawing.Point(100, 0);
85      this.textBoxFrom.Margin = new System.Windows.Forms.Padding(0);
86      this.textBoxFrom.Name = "textBoxFrom";
87      this.textBoxFrom.ReadOnly = true;
88      this.textBoxFrom.Size = new System.Drawing.Size(420, 20);
89      this.textBoxFrom.TabIndex = 2;
90      this.textBoxFrom.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxFrom_Validating);
91      //
92      // checkBoxFrom
93      //
94      this.checkBoxFrom.AutoSize = true;
95      this.checkBoxFrom.Dock = System.Windows.Forms.DockStyle.Fill;
96      this.checkBoxFrom.Location = new System.Drawing.Point(0, 0);
97      this.checkBoxFrom.Margin = new System.Windows.Forms.Padding(0);
98      this.checkBoxFrom.Name = "checkBoxFrom";
99      this.checkBoxFrom.Size = new System.Drawing.Size(100, 22);
100      this.checkBoxFrom.TabIndex = 4;
101      this.checkBoxFrom.Text = "From:";
102      this.checkBoxFrom.UseVisualStyleBackColor = true;
103      //
104      // tableLayoutPanel2
105      //
106      this.tableLayoutPanel2.ColumnCount = 2;
107      this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
108      this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
109      this.tableLayoutPanel2.Controls.Add(this.textBoxTo, 1, 1);
110      this.tableLayoutPanel2.Controls.Add(this.textBoxFrom, 1, 0);
111      this.tableLayoutPanel2.Controls.Add(this.checkBoxFrom, 0, 0);
112      this.tableLayoutPanel2.Controls.Add(this.checkBoxTo, 0, 1);
113      this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
114      this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
115      this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
116      this.tableLayoutPanel2.Name = "tableLayoutPanel2";
117      this.tableLayoutPanel2.RowCount = 2;
118      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
119      this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
120      this.tableLayoutPanel2.Size = new System.Drawing.Size(520, 44);
121      this.tableLayoutPanel2.TabIndex = 22;
122      //
123      // NumericRangeControl
124      //
125      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
126      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
127      this.Controls.Add(this.groupBox2);
128      this.Name = "NumericRangeControl";
129      this.Size = new System.Drawing.Size(526, 63);
130      this.groupBox2.ResumeLayout(false);
131      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
132      this.tableLayoutPanel2.ResumeLayout(false);
133      this.tableLayoutPanel2.PerformLayout();
134      this.ResumeLayout(false);
135
136    }
137
138    #endregion
139    private System.Windows.Forms.GroupBox groupBox2;
140    private System.Windows.Forms.CheckBox checkBoxTo;
141    private System.Windows.Forms.TextBox textBoxTo;
142    private System.Windows.Forms.ErrorProvider errorProvider;
143    private System.Windows.Forms.CheckBox checkBoxFrom;
144    private System.Windows.Forms.TextBox textBoxFrom;
145    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
146  }
147}
Note: See TracBrowser for help on using the repository browser.