Changeset 11957
- Timestamp:
- 02/06/15 15:49:24 (10 years ago)
- Location:
- branches/ProgrammableProblem/HeuristicLab.Problems.Programmable.Views/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable.Views/3.3/MultiEncodingView.Designer.cs
r11952 r11957 66 66 this.tabControl.SuspendLayout(); 67 67 this.encodingsTabPage.SuspendLayout(); 68 this.parametersTabPage.SuspendLayout(); 68 69 this.SuspendLayout(); 70 // 71 // parameterCollectionView 72 // 73 this.parameterCollectionView.Location = new System.Drawing.Point(6, 6); 74 this.parameterCollectionView.Size = new System.Drawing.Size(643, 433); 75 this.parameterCollectionView.TabIndex = 0; 69 76 // 70 77 // nameTextBox … … 92 99 this.encodingsListView.Name = "encodingsListView"; 93 100 this.encodingsListView.ShowGroups = false; 94 this.encodingsListView.Size = new System.Drawing.Size(241, 3 84);95 this.encodingsListView.TabIndex = 3;101 this.encodingsListView.Size = new System.Drawing.Size(241, 378); 102 this.encodingsListView.TabIndex = 2; 96 103 this.encodingsListView.UseCompatibleStateImageBehavior = false; 97 104 this.encodingsListView.View = System.Windows.Forms.View.Details; … … 113 120 this.addEncodingButton.Name = "addEncodingButton"; 114 121 this.addEncodingButton.Size = new System.Drawing.Size(24, 24); 115 this.addEncodingButton.TabIndex = 4;122 this.addEncodingButton.TabIndex = 0; 116 123 this.addEncodingButton.Text = "+"; 117 124 this.addEncodingButton.UseVisualStyleBackColor = true; … … 123 130 this.removeEncodingButton.Name = "removeEncodingButton"; 124 131 this.removeEncodingButton.Size = new System.Drawing.Size(24, 24); 125 this.removeEncodingButton.TabIndex = 4;132 this.removeEncodingButton.TabIndex = 1; 126 133 this.removeEncodingButton.Text = "x"; 127 134 this.removeEncodingButton.UseVisualStyleBackColor = true; … … 144 151 // 145 152 this.splitContainer.Panel2.Controls.Add(this.encodingDetailsGroupBox); 146 this.splitContainer.Size = new System.Drawing.Size(6 43, 420);153 this.splitContainer.Size = new System.Drawing.Size(637, 414); 147 154 this.splitContainer.SplitterDistance = 247; 148 155 this.splitContainer.TabIndex = 5; … … 156 163 this.encodingDetailsGroupBox.Location = new System.Drawing.Point(3, 27); 157 164 this.encodingDetailsGroupBox.Name = "encodingDetailsGroupBox"; 158 this.encodingDetailsGroupBox.Size = new System.Drawing.Size(38 6, 390);159 this.encodingDetailsGroupBox.TabIndex = 1;165 this.encodingDetailsGroupBox.Size = new System.Drawing.Size(380, 384); 166 this.encodingDetailsGroupBox.TabIndex = 0; 160 167 this.encodingDetailsGroupBox.TabStop = false; 161 168 this.encodingDetailsGroupBox.Text = "Details"; … … 170 177 this.encodingDetailViewHost.Name = "encodingDetailViewHost"; 171 178 this.encodingDetailViewHost.ReadOnly = false; 172 this.encodingDetailViewHost.Size = new System.Drawing.Size(3 80, 371);179 this.encodingDetailViewHost.Size = new System.Drawing.Size(374, 365); 173 180 this.encodingDetailViewHost.TabIndex = 0; 174 181 this.encodingDetailViewHost.ViewsLabelVisible = true; … … 177 184 // encodingsGroupBox 178 185 // 186 this.encodingsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 187 | System.Windows.Forms.AnchorStyles.Left) 188 | System.Windows.Forms.AnchorStyles.Right))); 179 189 this.encodingsGroupBox.Controls.Add(this.splitContainer); 180 this.encodingsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill; 181 this.encodingsGroupBox.Location = new System.Drawing.Point(3, 3); 190 this.encodingsGroupBox.Location = new System.Drawing.Point(6, 6); 182 191 this.encodingsGroupBox.Name = "encodingsGroupBox"; 183 this.encodingsGroupBox.Size = new System.Drawing.Size(64 9, 439);184 this.encodingsGroupBox.TabIndex = 6;192 this.encodingsGroupBox.Size = new System.Drawing.Size(643, 433); 193 this.encodingsGroupBox.TabIndex = 0; 185 194 this.encodingsGroupBox.TabStop = false; 186 195 this.encodingsGroupBox.Text = "Encodings"; … … 197 206 this.tabControl.SelectedIndex = 0; 198 207 this.tabControl.Size = new System.Drawing.Size(663, 471); 199 this.tabControl.TabIndex = 7;208 this.tabControl.TabIndex = 3; 200 209 // 201 210 // encodingsTabPage … … 212 221 // parametersTabPage 213 222 // 223 this.parametersTabPage.Controls.Add(this.parameterCollectionView); 214 224 this.parametersTabPage.Location = new System.Drawing.Point(4, 22); 215 225 this.parametersTabPage.Name = "parametersTabPage"; … … 226 236 this.Name = "MultiEncodingView"; 227 237 this.Size = new System.Drawing.Size(666, 497); 228 this.Controls.SetChildIndex(this.parameterCollectionView, 0);229 238 this.Controls.SetChildIndex(this.nameLabel, 0); 230 239 this.Controls.SetChildIndex(this.nameTextBox, 0); … … 240 249 this.tabControl.ResumeLayout(false); 241 250 this.encodingsTabPage.ResumeLayout(false); 251 this.parametersTabPage.ResumeLayout(false); 242 252 this.ResumeLayout(false); 243 253 this.PerformLayout(); -
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable.Views/3.3/MultiEncodingView.cs
r11952 r11957 42 42 public MultiEncodingView() { 43 43 InitializeComponent(); 44 Controls.Remove(parameterCollectionView);45 parameterCollectionView.Dock = DockStyle.Fill;46 parametersTabPage.Controls.Add(parameterCollectionView);47 44 addEncodingButton.Text = string.Empty; 48 45 addEncodingButton.Image = VSImageLibrary.Add;
Note: See TracChangeset
for help on using the changeset viewer.