- Timestamp:
- 12/18/08 15:33:37 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Console/AddJobForm.Designer.cs
r1018 r1030 1 namespace HeuristicLab.Hive.Server.Console { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.Hive.Server.Console { 2 23 partial class AddJobForm { 3 24 /// <summary> … … 28 49 this.btnAdd = new System.Windows.Forms.Button(); 29 50 this.btnClose = new System.Windows.Forms.Button(); 51 this.lblNumJobs = new System.Windows.Forms.Label(); 52 this.tbNumJobs = new System.Windows.Forms.TextBox(); 53 this.lblError = new System.Windows.Forms.Label(); 30 54 this.SuspendLayout(); 31 55 // … … 33 57 // 34 58 this.lblParentJob.AutoSize = true; 35 this.lblParentJob.Location = new System.Drawing.Point( 12, 9);59 this.lblParentJob.Location = new System.Drawing.Point(9, 36); 36 60 this.lblParentJob.Name = "lblParentJob"; 37 61 this.lblParentJob.Size = new System.Drawing.Size(58, 13); … … 42 66 // 43 67 this.cbParJob.FormattingEnabled = true; 44 this.cbParJob.Location = new System.Drawing.Point(1 20, 6);68 this.cbParJob.Location = new System.Drawing.Point(117, 33); 45 69 this.cbParJob.Name = "cbParJob"; 46 70 this.cbParJob.Size = new System.Drawing.Size(212, 21); … … 49 73 // btnAdd 50 74 // 51 this.btnAdd.Location = new System.Drawing.Point(1 5, 38);75 this.btnAdd.Location = new System.Drawing.Point(12, 65); 52 76 this.btnAdd.Name = "btnAdd"; 53 77 this.btnAdd.Size = new System.Drawing.Size(75, 23); … … 59 83 // btnClose 60 84 // 61 this.btnClose.Location = new System.Drawing.Point(25 7, 38);85 this.btnClose.Location = new System.Drawing.Point(254, 65); 62 86 this.btnClose.Name = "btnClose"; 63 87 this.btnClose.Size = new System.Drawing.Size(75, 23); … … 67 91 this.btnClose.Click += new System.EventHandler(this.btnClose_Click); 68 92 // 93 // lblNumJobs 94 // 95 this.lblNumJobs.AutoSize = true; 96 this.lblNumJobs.Location = new System.Drawing.Point(12, 9); 97 this.lblNumJobs.Name = "lblNumJobs"; 98 this.lblNumJobs.Size = new System.Drawing.Size(78, 13); 99 this.lblNumJobs.TabIndex = 6; 100 this.lblNumJobs.Text = "Number of jobs"; 101 // 102 // tbNumJobs 103 // 104 this.tbNumJobs.Location = new System.Drawing.Point(117, 6); 105 this.tbNumJobs.Name = "tbNumJobs"; 106 this.tbNumJobs.Size = new System.Drawing.Size(212, 20); 107 this.tbNumJobs.TabIndex = 7; 108 this.tbNumJobs.Text = "1"; 109 // 110 // lblError 111 // 112 this.lblError.AutoSize = true; 113 this.lblError.Location = new System.Drawing.Point(94, 74); 114 this.lblError.Name = "lblError"; 115 this.lblError.Size = new System.Drawing.Size(0, 13); 116 this.lblError.TabIndex = 8; 117 // 69 118 // AddJobForm 70 119 // 71 120 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 72 121 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 73 this.ClientSize = new System.Drawing.Size(344, 68); 122 this.ClientSize = new System.Drawing.Size(344, 100); 123 this.Controls.Add(this.lblError); 124 this.Controls.Add(this.tbNumJobs); 125 this.Controls.Add(this.lblNumJobs); 74 126 this.Controls.Add(this.btnClose); 75 127 this.Controls.Add(this.btnAdd); … … 89 141 private System.Windows.Forms.Button btnAdd; 90 142 private System.Windows.Forms.Button btnClose; 143 private System.Windows.Forms.Label lblNumJobs; 144 private System.Windows.Forms.TextBox tbNumJobs; 145 private System.Windows.Forms.Label lblError; 91 146 } 92 147 }
Note: See TracChangeset
for help on using the changeset viewer.