Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/JsonItemBaseControl.Designer.cs @ 17829

Last change on this file since 17829 was 17829, checked in by dpiringe, 3 years ago

#3026

  • moved JsonItems from Models to JsonItems
  • moved WinForms controls from Shared to Views
File size: 7.5 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemBaseControl {
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.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
28      this.textBoxName = new System.Windows.Forms.TextBox();
29      this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
30      this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
31      this.textBoxDescription = new System.Windows.Forms.TextBox();
32      this.label1 = new System.Windows.Forms.Label();
33      this.labelDescription = new System.Windows.Forms.Label();
34      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
35      this.tableLayoutPanel1.SuspendLayout();
36      this.tableLayoutPanel5.SuspendLayout();
37      this.SuspendLayout();
38      //
39      // errorProvider
40      //
41      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
42      this.errorProvider.ContainerControl = this;
43      //
44      // textBoxName
45      //
46      this.textBoxName.Dock = System.Windows.Forms.DockStyle.Fill;
47      this.errorProvider.SetIconAlignment(this.textBoxName, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
48      this.textBoxName.Location = new System.Drawing.Point(100, 2);
49      this.textBoxName.Margin = new System.Windows.Forms.Padding(0, 2, 0, 0);
50      this.textBoxName.Name = "textBoxName";
51      this.textBoxName.Size = new System.Drawing.Size(394, 20);
52      this.textBoxName.TabIndex = 10;
53      this.textBoxName.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxName_Validating);
54      //
55      // tableLayoutPanel1
56      //
57      this.tableLayoutPanel1.ColumnCount = 1;
58      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
59      this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel5, 0, 0);
60      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
61      this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
62      this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
63      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
64      this.tableLayoutPanel1.RowCount = 2;
65      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
66      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
67      this.tableLayoutPanel1.Size = new System.Drawing.Size(494, 594);
68      this.tableLayoutPanel1.TabIndex = 16;
69      //
70      // tableLayoutPanel5
71      //
72      this.tableLayoutPanel5.ColumnCount = 2;
73      this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
74      this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
75      this.tableLayoutPanel5.Controls.Add(this.textBoxDescription, 1, 1);
76      this.tableLayoutPanel5.Controls.Add(this.textBoxName, 1, 0);
77      this.tableLayoutPanel5.Controls.Add(this.label1, 0, 0);
78      this.tableLayoutPanel5.Controls.Add(this.labelDescription, 0, 1);
79      this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
80      this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 0);
81      this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(0);
82      this.tableLayoutPanel5.Name = "tableLayoutPanel5";
83      this.tableLayoutPanel5.RowCount = 1;
84      this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
85      this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
86      this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
87      this.tableLayoutPanel5.Size = new System.Drawing.Size(494, 50);
88      this.tableLayoutPanel5.TabIndex = 17;
89      //
90      // textBoxDescription
91      //
92      this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
93      this.textBoxDescription.Location = new System.Drawing.Point(100, 27);
94      this.textBoxDescription.Margin = new System.Windows.Forms.Padding(0, 2, 0, 0);
95      this.textBoxDescription.Name = "textBoxDescription";
96      this.textBoxDescription.Size = new System.Drawing.Size(394, 20);
97      this.textBoxDescription.TabIndex = 14;
98      //
99      // label1
100      //
101      this.label1.AutoSize = true;
102      this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
103      this.label1.Location = new System.Drawing.Point(0, 0);
104      this.label1.Margin = new System.Windows.Forms.Padding(0);
105      this.label1.Name = "label1";
106      this.label1.Size = new System.Drawing.Size(100, 25);
107      this.label1.TabIndex = 9;
108      this.label1.Text = "Name";
109      this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
110      //
111      // labelDescription
112      //
113      this.labelDescription.AutoSize = true;
114      this.labelDescription.Dock = System.Windows.Forms.DockStyle.Fill;
115      this.labelDescription.Location = new System.Drawing.Point(0, 25);
116      this.labelDescription.Margin = new System.Windows.Forms.Padding(0);
117      this.labelDescription.Name = "labelDescription";
118      this.labelDescription.Size = new System.Drawing.Size(100, 25);
119      this.labelDescription.TabIndex = 13;
120      this.labelDescription.Text = "Description";
121      this.labelDescription.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
122      //
123      // JsonItemBaseControl
124      //
125      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
126      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
127      this.Controls.Add(this.tableLayoutPanel1);
128      this.errorProvider.SetIconAlignment(this, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
129      this.Name = "JsonItemBaseControl";
130      this.Padding = new System.Windows.Forms.Padding(3);
131      this.Size = new System.Drawing.Size(500, 600);
132      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
133      this.tableLayoutPanel1.ResumeLayout(false);
134      this.tableLayoutPanel5.ResumeLayout(false);
135      this.tableLayoutPanel5.PerformLayout();
136      this.ResumeLayout(false);
137
138    }
139
140    #endregion
141    protected System.Windows.Forms.ErrorProvider errorProvider;
142    protected System.Windows.Forms.TextBox textBoxName;
143    protected System.Windows.Forms.Label label1;
144    protected System.Windows.Forms.Label labelDescription;
145    protected System.Windows.Forms.TextBox textBoxDescription;
146    protected System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
147    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
148  }
149}
Note: See TracBrowser for help on using the repository browser.