Changeset 17927
- Timestamp:
- 04/06/21 08:28:45 (4 years ago)
- Location:
- trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/ShapeConstraintsView.Designer.cs
r17902 r17927 54 54 this.splitContainer = new System.Windows.Forms.SplitContainer(); 55 55 this.groupBox = new System.Windows.Forms.GroupBox(); 56 this.ConstraintsInputBaseLayout = new System.Windows.Forms.TableLayoutPanel(); 56 57 this.constraintsInput = new System.Windows.Forms.TextBox(); 57 58 this.parseBtn = new System.Windows.Forms.Button(); 59 this.infoTableLayout = new System.Windows.Forms.TableLayoutPanel(); 58 60 this.infoLabel = new System.Windows.Forms.Label(); 59 61 this.errorOutput = new System.Windows.Forms.Label(); … … 65 67 this.splitContainer.SuspendLayout(); 66 68 this.groupBox.SuspendLayout(); 69 this.ConstraintsInputBaseLayout.SuspendLayout(); 70 this.infoTableLayout.SuspendLayout(); 67 71 this.SuspendLayout(); 68 72 // 69 // splitContainer 173 // splitContainer 70 74 // 71 75 this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill; 72 76 this.splitContainer.Location = new System.Drawing.Point(0, 0); 73 this.splitContainer.Name = "splitContainer 1";74 // 75 // splitContainer 1.Panel177 this.splitContainer.Name = "splitContainer"; 78 // 79 // splitContainer.Panel1 76 80 // 77 81 this.splitContainer.Panel1.Controls.Add(this.groupBox); 78 82 // 79 // splitContainer 1.Panel283 // splitContainer.Panel2 80 84 // 81 85 this.splitContainer.Panel2.Controls.Add(this.shapeConstraintsView); … … 84 88 this.splitContainer.TabIndex = 0; 85 89 // 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); 90 // groupBox 91 // 92 this.groupBox.Controls.Add(this.ConstraintsInputBaseLayout); 92 93 this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill; 93 94 this.groupBox.Location = new System.Drawing.Point(0, 0); 94 this.groupBox.Name = "groupBox1"; 95 this.groupBox.Name = "groupBox"; 96 this.groupBox.Padding = new System.Windows.Forms.Padding(7); 95 97 this.groupBox.Size = new System.Drawing.Size(296, 629); 96 98 this.groupBox.TabIndex = 3; … … 98 100 this.groupBox.Text = "Constraints Input"; 99 101 // 102 // ConstraintsInputBaseLayout 103 // 104 this.ConstraintsInputBaseLayout.ColumnCount = 1; 105 this.ConstraintsInputBaseLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); 106 this.ConstraintsInputBaseLayout.Controls.Add(this.constraintsInput, 0, 1); 107 this.ConstraintsInputBaseLayout.Controls.Add(this.parseBtn, 0, 2); 108 this.ConstraintsInputBaseLayout.Controls.Add(this.infoTableLayout, 0, 0); 109 this.ConstraintsInputBaseLayout.Dock = System.Windows.Forms.DockStyle.Fill; 110 this.ConstraintsInputBaseLayout.Location = new System.Drawing.Point(7, 20); 111 this.ConstraintsInputBaseLayout.Name = "ConstraintsInputBaseLayout"; 112 this.ConstraintsInputBaseLayout.RowCount = 3; 113 this.ConstraintsInputBaseLayout.RowStyles.Add(new System.Windows.Forms.RowStyle()); 114 this.ConstraintsInputBaseLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); 115 this.ConstraintsInputBaseLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); 116 this.ConstraintsInputBaseLayout.Size = new System.Drawing.Size(282, 602); 117 this.ConstraintsInputBaseLayout.TabIndex = 6; 118 // 100 119 // constraintsInput 101 120 // 102 this.constraintsInput.AcceptsTab = true;103 121 this.constraintsInput.Dock = System.Windows.Forms.DockStyle.Fill; 104 this.constraintsInput.Location = new System.Drawing.Point(3, 29);122 this.constraintsInput.Location = new System.Drawing.Point(3, 16); 105 123 this.constraintsInput.Multiline = true; 106 124 this.constraintsInput.Name = "constraintsInput"; 107 125 this.constraintsInput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 108 this.constraintsInput.Size = new System.Drawing.Size(2 90, 561);109 this.constraintsInput.TabIndex = 2;126 this.constraintsInput.Size = new System.Drawing.Size(276, 553); 127 this.constraintsInput.TabIndex = 0; 110 128 this.constraintsInput.TextChanged += new System.EventHandler(this.constraintsInput_TextChanged); 111 129 // 112 130 // parseBtn 113 131 // 114 this.parseBtn.Dock = System.Windows.Forms.DockStyle. Bottom;115 this.parseBtn.Location = new System.Drawing.Point(3, 5 90);132 this.parseBtn.Dock = System.Windows.Forms.DockStyle.Fill; 133 this.parseBtn.Location = new System.Drawing.Point(3, 575); 116 134 this.parseBtn.Name = "parseBtn"; 117 this.parseBtn.Size = new System.Drawing.Size(2 90, 23);135 this.parseBtn.Size = new System.Drawing.Size(276, 24); 118 136 this.parseBtn.TabIndex = 1; 119 137 this.parseBtn.Text = "Parse Constraints"; … … 121 139 this.parseBtn.Click += new System.EventHandler(this.parseBtn_Click); 122 140 // 123 // label1 124 // 141 // infoTableLayout 142 // 143 this.infoTableLayout.AutoSize = true; 144 this.infoTableLayout.ColumnCount = 2; 145 this.infoTableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); 146 this.infoTableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 40F)); 147 this.infoTableLayout.Controls.Add(this.infoLabel, 1, 0); 148 this.infoTableLayout.Controls.Add(this.errorOutput, 0, 0); 149 this.infoTableLayout.Dock = System.Windows.Forms.DockStyle.Fill; 150 this.infoTableLayout.Location = new System.Drawing.Point(0, 0); 151 this.infoTableLayout.Margin = new System.Windows.Forms.Padding(0); 152 this.infoTableLayout.Name = "infoTableLayout"; 153 this.infoTableLayout.RowCount = 1; 154 this.infoTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); 155 this.infoTableLayout.Size = new System.Drawing.Size(282, 13); 156 this.infoTableLayout.TabIndex = 2; 157 // 158 // infoLabel 159 // 160 this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 125 161 this.infoLabel.AutoSize = true; 126 this.infoLabel.Dock = System.Windows.Forms.DockStyle.Top;127 162 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";163 this.infoLabel.Location = new System.Drawing.Point(260, 0); 164 this.infoLabel.Name = "infoLabel"; 130 165 this.infoLabel.Size = new System.Drawing.Size(19, 13); 131 166 this.infoLabel.TabIndex = 4; … … 137 172 // 138 173 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); 174 this.errorOutput.Dock = System.Windows.Forms.DockStyle.Fill; 175 this.errorOutput.Location = new System.Drawing.Point(3, 0); 143 176 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 // 177 this.errorOutput.Size = new System.Drawing.Size(236, 13); 178 this.errorOutput.TabIndex = 5; 179 this.errorOutput.Text = "label1"; 180 // 181 // box1 182 // 183 this.shapeConstraintsView.AutoSize = true; 150 184 this.shapeConstraintsView.Dock = System.Windows.Forms.DockStyle.Fill; 151 185 this.shapeConstraintsView.Location = new System.Drawing.Point(0, 0); 152 this.shapeConstraintsView.Name = " intervalConstraintsView";186 this.shapeConstraintsView.Name = "box1"; 153 187 this.shapeConstraintsView.Size = new System.Drawing.Size(588, 629); 154 188 this.shapeConstraintsView.TabIndex = 2; … … 164 198 this.splitContainer.Panel1.ResumeLayout(false); 165 199 this.splitContainer.Panel2.ResumeLayout(false); 200 this.splitContainer.Panel2.PerformLayout(); 166 201 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit(); 167 202 this.splitContainer.ResumeLayout(false); 168 203 this.groupBox.ResumeLayout(false); 169 this.groupBox.PerformLayout(); 204 this.ConstraintsInputBaseLayout.ResumeLayout(false); 205 this.ConstraintsInputBaseLayout.PerformLayout(); 206 this.infoTableLayout.ResumeLayout(false); 207 this.infoTableLayout.PerformLayout(); 170 208 this.ResumeLayout(false); 171 209 … … 175 213 private System.Windows.Forms.SplitContainer splitContainer; 176 214 private System.Windows.Forms.GroupBox groupBox; 177 private System.Windows.Forms.Button parseBtn;178 215 private HeuristicLab.Core.Views.CheckedItemListView<ShapeConstraint> shapeConstraintsView; 179 private System.Windows.Forms.TextBox constraintsInput;180 private Label errorOutput;181 216 private Label infoLabel; 182 217 protected ToolTip toolTip; 183 } 218 private TableLayoutPanel ConstraintsInputBaseLayout; 219 private TextBox constraintsInput; 220 private Button parseBtn; 221 private Label errorOutput; 222 private TableLayoutPanel infoTableLayout; 223 } 184 224 }
Note: See TracChangeset
for help on using the changeset viewer.