Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Console/AddJobForm.Designer.cs @ 1022

Last change on this file since 1022 was 1018, checked in by aleitner, 16 years ago

Job and User insert updated, also job with parent-job, user in user-group. (#380)

File size: 3.2 KB
Line 
1namespace HeuristicLab.Hive.Server.Console {
2  partial class AddJobForm {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.lblParentJob = new System.Windows.Forms.Label();
27      this.cbParJob = new System.Windows.Forms.ComboBox();
28      this.btnAdd = new System.Windows.Forms.Button();
29      this.btnClose = new System.Windows.Forms.Button();
30      this.SuspendLayout();
31      //
32      // lblParentJob
33      //
34      this.lblParentJob.AutoSize = true;
35      this.lblParentJob.Location = new System.Drawing.Point(12, 9);
36      this.lblParentJob.Name = "lblParentJob";
37      this.lblParentJob.Size = new System.Drawing.Size(58, 13);
38      this.lblParentJob.TabIndex = 1;
39      this.lblParentJob.Text = "Parent Job";
40      //
41      // cbParJob
42      //
43      this.cbParJob.FormattingEnabled = true;
44      this.cbParJob.Location = new System.Drawing.Point(120, 6);
45      this.cbParJob.Name = "cbParJob";
46      this.cbParJob.Size = new System.Drawing.Size(212, 21);
47      this.cbParJob.TabIndex = 3;
48      //
49      // btnAdd
50      //
51      this.btnAdd.Location = new System.Drawing.Point(15, 38);
52      this.btnAdd.Name = "btnAdd";
53      this.btnAdd.Size = new System.Drawing.Size(75, 23);
54      this.btnAdd.TabIndex = 4;
55      this.btnAdd.Text = "Add";
56      this.btnAdd.UseVisualStyleBackColor = true;
57      this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
58      //
59      // btnClose
60      //
61      this.btnClose.Location = new System.Drawing.Point(257, 38);
62      this.btnClose.Name = "btnClose";
63      this.btnClose.Size = new System.Drawing.Size(75, 23);
64      this.btnClose.TabIndex = 5;
65      this.btnClose.Text = "Close";
66      this.btnClose.UseVisualStyleBackColor = true;
67      this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
68      //
69      // AddJobForm
70      //
71      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
72      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
73      this.ClientSize = new System.Drawing.Size(344, 68);
74      this.Controls.Add(this.btnClose);
75      this.Controls.Add(this.btnAdd);
76      this.Controls.Add(this.cbParJob);
77      this.Controls.Add(this.lblParentJob);
78      this.Name = "AddJobForm";
79      this.Text = "Add Job";
80      this.ResumeLayout(false);
81      this.PerformLayout();
82
83    }
84
85    #endregion
86
87    private System.Windows.Forms.Label lblParentJob;
88    private System.Windows.Forms.ComboBox cbParJob;
89    private System.Windows.Forms.Button btnAdd;
90    private System.Windows.Forms.Button btnClose;
91  }
92}
Note: See TracBrowser for help on using the repository browser.