- Timestamp:
- 03/09/12 11:41:37 (13 years ago)
- Location:
- branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/Views
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/Views/OKBExperimentUploadView.cs
r7584 r7590 89 89 foreach (var run in Content.Runs) { 90 90 OKBRunConfigSelectionView orcsv = new OKBRunConfigSelectionView(run, algorithms, problems); 91 orcsv.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top; 91 92 runConfigViews.Add(orcsv); 92 93 tableLayoutPanel.Controls.Add(orcsv); -
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/Views/OKBRunConfigSelectionView.Designer.cs
r7580 r7590 41 41 this.lblRunName.Anchor = System.Windows.Forms.AnchorStyles.None; 42 42 this.lblRunName.AutoSize = true; 43 this.lblRunName.Location = new System.Drawing.Point( 40, 7);43 this.lblRunName.Location = new System.Drawing.Point(39, 7); 44 44 this.lblRunName.Name = "lblRunName"; 45 45 this.lblRunName.Size = new System.Drawing.Size(61, 13); … … 49 49 // cmbAlgorithm 50 50 // 51 this.cmbAlgorithm.Anchor = System.Windows.Forms.AnchorStyles.None; 51 this.cmbAlgorithm.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 52 | System.Windows.Forms.AnchorStyles.Right))); 52 53 this.cmbAlgorithm.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 53 54 this.cmbAlgorithm.FormattingEnabled = true; 54 this.cmbAlgorithm.Location = new System.Drawing.Point(42 6, 3);55 this.cmbAlgorithm.Location = new System.Drawing.Point(423, 3); 55 56 this.cmbAlgorithm.Name = "cmbAlgorithm"; 56 this.cmbAlgorithm.Size = new System.Drawing.Size(13 5, 21);57 this.cmbAlgorithm.Size = new System.Drawing.Size(134, 21); 57 58 this.cmbAlgorithm.TabIndex = 1; 58 59 // 59 60 // cmbProblem 60 61 // 61 this.cmbProblem.Anchor = System.Windows.Forms.AnchorStyles.None; 62 this.cmbProblem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 63 | System.Windows.Forms.AnchorStyles.Right))); 62 64 this.cmbProblem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 63 65 this.cmbProblem.FormattingEnabled = true; 64 this.cmbProblem.Location = new System.Drawing.Point(70 8, 3);66 this.cmbProblem.Location = new System.Drawing.Point(703, 3); 65 67 this.cmbProblem.Name = "cmbProblem"; 66 this.cmbProblem.Size = new System.Drawing.Size(13 5, 21);68 this.cmbProblem.Size = new System.Drawing.Size(134, 21); 67 69 this.cmbProblem.TabIndex = 2; 68 70 // … … 71 73 this.label1.Anchor = System.Windows.Forms.AnchorStyles.None; 72 74 this.label1.AutoSize = true; 73 this.label1.Location = new System.Drawing.Point(31 3, 7);75 this.label1.Location = new System.Drawing.Point(311, 7); 74 76 this.label1.Name = "label1"; 75 77 this.label1.Size = new System.Drawing.Size(78, 13); … … 88 90 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); 89 91 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); 90 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 39F));92 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 45F)); 91 93 this.tableLayoutPanel1.Controls.Add(this.lblRunName, 0, 0); 92 94 this.tableLayoutPanel1.Controls.Add(this.cmbProblem, 5, 0); … … 105 107 // txtRunName 106 108 // 107 this.txtRunName.Anchor = System.Windows.Forms.AnchorStyles.None; 108 this.txtRunName.Location = new System.Drawing.Point(144, 3); 109 this.txtRunName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 110 | System.Windows.Forms.AnchorStyles.Right))); 111 this.txtRunName.Location = new System.Drawing.Point(143, 3); 109 112 this.txtRunName.Name = "txtRunName"; 110 this.txtRunName.Size = new System.Drawing.Size(13 5, 20);113 this.txtRunName.Size = new System.Drawing.Size(134, 20); 111 114 this.txtRunName.TabIndex = 4; 112 115 // … … 115 118 this.label2.Anchor = System.Windows.Forms.AnchorStyles.None; 116 119 this.label2.AutoSize = true; 117 this.label2.Location = new System.Drawing.Point(59 8, 7);120 this.label2.Location = new System.Drawing.Point(593, 7); 118 121 this.label2.Name = "label2"; 119 122 this.label2.Size = new System.Drawing.Size(73, 13); … … 127 130 this.chkUpload.Checked = true; 128 131 this.chkUpload.CheckState = System.Windows.Forms.CheckState.Checked; 129 this.chkUpload.Location = new System.Drawing.Point(8 61, 6);132 this.chkUpload.Location = new System.Drawing.Point(858, 6); 130 133 this.chkUpload.Name = "chkUpload"; 131 134 this.chkUpload.Size = new System.Drawing.Size(15, 14);
Note: See TracChangeset
for help on using the changeset viewer.