Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/ShapeConstraintsView.Designer.cs @ 17902

Last change on this file since 17902 was 17902, checked in by gkronber, 3 years ago

#3073 merged reintegration branch to trunk

File size: 8.5 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
5 *
6 * This file is part of HeuristicLab.
7 *
8 * HeuristicLab is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * HeuristicLab is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#endregion
23using System;
24using System.Drawing;
25using System.Windows.Forms;
26using HeuristicLab.Core.Views;
27
28namespace HeuristicLab.Problems.DataAnalysis.Views {
29  partial class ShapeConstraintsView {
30    /// <summary>
31    /// Required designer variable.
32    /// </summary>
33    private System.ComponentModel.IContainer components = null;
34
35    /// <summary>
36    /// Clean up any resources being used.
37    /// </summary>
38    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
39    protected override void Dispose(bool disposing) {
40      if (disposing && (components != null)) {
41        components.Dispose();
42      }
43      base.Dispose(disposing);
44    }
45
46    #region Component Designer generated code
47
48    /// <summary>
49    /// Required method for Designer support - do not modify
50    /// the contents of this method with the code editor.
51    /// </summary>
52    private void InitializeComponent() {
53            this.components = new System.ComponentModel.Container();
54            this.splitContainer = new System.Windows.Forms.SplitContainer();
55            this.groupBox = new System.Windows.Forms.GroupBox();
56            this.constraintsInput = new System.Windows.Forms.TextBox();
57            this.parseBtn = new System.Windows.Forms.Button();
58            this.infoLabel = new System.Windows.Forms.Label();
59            this.errorOutput = new System.Windows.Forms.Label();
60            this.shapeConstraintsView = new HeuristicLab.Core.Views.CheckedItemListView<ShapeConstraint>();
61            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
62            ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
63            this.splitContainer.Panel1.SuspendLayout();
64            this.splitContainer.Panel2.SuspendLayout();
65            this.splitContainer.SuspendLayout();
66            this.groupBox.SuspendLayout();
67            this.SuspendLayout();
68            //
69            // splitContainer1
70            //
71            this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
72            this.splitContainer.Location = new System.Drawing.Point(0, 0);
73            this.splitContainer.Name = "splitContainer1";
74            //
75            // splitContainer1.Panel1
76            //
77            this.splitContainer.Panel1.Controls.Add(this.groupBox);
78            //
79            // splitContainer1.Panel2
80            //
81            this.splitContainer.Panel2.Controls.Add(this.shapeConstraintsView);
82            this.splitContainer.Size = new System.Drawing.Size(888, 629);
83            this.splitContainer.SplitterDistance = 296;
84            this.splitContainer.TabIndex = 0;
85            //
86            // groupBox1
87            //
88            this.groupBox.Controls.Add(this.constraintsInput);
89            this.groupBox.Controls.Add(this.parseBtn);
90            this.groupBox.Controls.Add(this.infoLabel);
91            this.groupBox.Controls.Add(this.errorOutput);
92            this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
93            this.groupBox.Location = new System.Drawing.Point(0, 0);
94            this.groupBox.Name = "groupBox1";
95            this.groupBox.Size = new System.Drawing.Size(296, 629);
96            this.groupBox.TabIndex = 3;
97            this.groupBox.TabStop = false;
98            this.groupBox.Text = "Constraints Input";
99            //
100            // constraintsInput
101            //
102            this.constraintsInput.AcceptsTab = true;
103            this.constraintsInput.Dock = System.Windows.Forms.DockStyle.Fill;
104            this.constraintsInput.Location = new System.Drawing.Point(3, 29);
105            this.constraintsInput.Multiline = true;
106            this.constraintsInput.Name = "constraintsInput";
107            this.constraintsInput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
108            this.constraintsInput.Size = new System.Drawing.Size(290, 561);
109            this.constraintsInput.TabIndex = 2;
110            this.constraintsInput.TextChanged += new System.EventHandler(this.constraintsInput_TextChanged);
111            //
112            // parseBtn
113            //
114            this.parseBtn.Dock = System.Windows.Forms.DockStyle.Bottom;
115            this.parseBtn.Location = new System.Drawing.Point(3, 590);
116            this.parseBtn.Name = "parseBtn";
117            this.parseBtn.Size = new System.Drawing.Size(290, 23);
118            this.parseBtn.TabIndex = 1;
119            this.parseBtn.Text = "Parse Constraints";
120            this.parseBtn.UseVisualStyleBackColor = true;
121            this.parseBtn.Click += new System.EventHandler(this.parseBtn_Click);
122            //
123            // label1
124            //
125            this.infoLabel.AutoSize = true;
126            this.infoLabel.Dock = System.Windows.Forms.DockStyle.Top;
127            this.infoLabel.Image = global::HeuristicLab.Problems.DataAnalysis.Views.Properties.Resources.VS2008ImageLibrary_Annotations_Information;
128            this.infoLabel.Location = new System.Drawing.Point(3, 16);
129            this.infoLabel.Name = "label1";
130            this.infoLabel.Size = new System.Drawing.Size(19, 13);
131            this.infoLabel.TabIndex = 4;
132            this.infoLabel.Text = "    ";
133            this.toolTip.SetToolTip(this.infoLabel, "Double-click to open description.");
134            this.infoLabel.DoubleClick += new System.EventHandler(this.helpButton_DoubleClick);
135            //
136            // errorOutput
137            //
138            this.errorOutput.AutoSize = true;
139            this.errorOutput.Dock = System.Windows.Forms.DockStyle.Bottom;
140            this.errorOutput.ForeColor = System.Drawing.Color.DarkRed;
141            this.errorOutput.Location = new System.Drawing.Point(3, 613);
142            this.errorOutput.MaximumSize = new System.Drawing.Size(350, 0);
143            this.errorOutput.Name = "errorOutput";
144            this.errorOutput.Size = new System.Drawing.Size(35, 13);
145            this.errorOutput.TabIndex = 3;
146            this.errorOutput.Text = "label2";
147            //
148            // intervalConstraintsView
149            //
150            this.shapeConstraintsView.Dock = System.Windows.Forms.DockStyle.Fill;
151            this.shapeConstraintsView.Location = new System.Drawing.Point(0, 0);
152            this.shapeConstraintsView.Name = "intervalConstraintsView";
153            this.shapeConstraintsView.Size = new System.Drawing.Size(588, 629);
154            this.shapeConstraintsView.TabIndex = 2;
155            this.shapeConstraintsView.TabStop = false;
156            //
157            // ShapeConstraintsView
158            //
159            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
160            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
161            this.Controls.Add(this.splitContainer);
162            this.Name = "ShapeConstraintsView";
163            this.Size = new System.Drawing.Size(888, 629);
164            this.splitContainer.Panel1.ResumeLayout(false);
165            this.splitContainer.Panel2.ResumeLayout(false);
166            ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
167            this.splitContainer.ResumeLayout(false);
168            this.groupBox.ResumeLayout(false);
169            this.groupBox.PerformLayout();
170            this.ResumeLayout(false);
171
172    }
173    #endregion
174
175    private System.Windows.Forms.SplitContainer splitContainer;
176    private System.Windows.Forms.GroupBox groupBox;
177    private System.Windows.Forms.Button parseBtn;
178    private HeuristicLab.Core.Views.CheckedItemListView<ShapeConstraint> shapeConstraintsView;
179    private System.Windows.Forms.TextBox constraintsInput;
180    private Label errorOutput;
181    private Label infoLabel;
182    protected ToolTip toolTip;
183    }
184}
Note: See TracBrowser for help on using the repository browser.