Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Console/AddNewForm.Designer.cs @ 968

Last change on this file since 968 was 956, checked in by aleitner, 16 years ago

Added new Form for Add Job or Add User - Tests with new interfaces in Server (#380)

File size: 3.9 KB
Line 
1namespace HeuristicLab.Hive.Server.Console {
2  partial class AddNewForm {
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.lblOne = new System.Windows.Forms.Label();
27      this.lblGroup = new System.Windows.Forms.Label();
28      this.textBox1 = new System.Windows.Forms.TextBox();
29      this.comboBox1 = new System.Windows.Forms.ComboBox();
30      this.btnAdd = new System.Windows.Forms.Button();
31      this.btnClose = new System.Windows.Forms.Button();
32      this.SuspendLayout();
33      //
34      // lblOne
35      //
36      this.lblOne.AutoSize = true;
37      this.lblOne.Location = new System.Drawing.Point(12, 14);
38      this.lblOne.Name = "lblOne";
39      this.lblOne.Size = new System.Drawing.Size(35, 13);
40      this.lblOne.TabIndex = 0;
41      this.lblOne.Text = "label1";
42      //
43      // lblGroup
44      //
45      this.lblGroup.AutoSize = true;
46      this.lblGroup.Location = new System.Drawing.Point(12, 51);
47      this.lblGroup.Name = "lblGroup";
48      this.lblGroup.Size = new System.Drawing.Size(35, 13);
49      this.lblGroup.TabIndex = 1;
50      this.lblGroup.Text = "label2";
51      //
52      // textBox1
53      //
54      this.textBox1.Location = new System.Drawing.Point(120, 7);
55      this.textBox1.Name = "textBox1";
56      this.textBox1.Size = new System.Drawing.Size(212, 20);
57      this.textBox1.TabIndex = 2;
58      //
59      // comboBox1
60      //
61      this.comboBox1.FormattingEnabled = true;
62      this.comboBox1.Location = new System.Drawing.Point(120, 42);
63      this.comboBox1.Name = "comboBox1";
64      this.comboBox1.Size = new System.Drawing.Size(212, 21);
65      this.comboBox1.TabIndex = 3;
66      //
67      // btnAdd
68      //
69      this.btnAdd.Location = new System.Drawing.Point(12, 69);
70      this.btnAdd.Name = "btnAdd";
71      this.btnAdd.Size = new System.Drawing.Size(75, 23);
72      this.btnAdd.TabIndex = 4;
73      this.btnAdd.Text = "Add";
74      this.btnAdd.UseVisualStyleBackColor = true;
75      //
76      // btnClose
77      //
78      this.btnClose.Location = new System.Drawing.Point(257, 69);
79      this.btnClose.Name = "btnClose";
80      this.btnClose.Size = new System.Drawing.Size(75, 23);
81      this.btnClose.TabIndex = 5;
82      this.btnClose.Text = "Close";
83      this.btnClose.UseVisualStyleBackColor = true;
84      //
85      // AddNewForm
86      //
87      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
88      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
89      this.ClientSize = new System.Drawing.Size(344, 102);
90      this.Controls.Add(this.btnClose);
91      this.Controls.Add(this.btnAdd);
92      this.Controls.Add(this.comboBox1);
93      this.Controls.Add(this.textBox1);
94      this.Controls.Add(this.lblGroup);
95      this.Controls.Add(this.lblOne);
96      this.Name = "AddNewForm";
97      this.Text = "AddNewForm";
98      this.ResumeLayout(false);
99      this.PerformLayout();
100
101    }
102
103    #endregion
104
105    private System.Windows.Forms.Label lblOne;
106    private System.Windows.Forms.Label lblGroup;
107    private System.Windows.Forms.TextBox textBox1;
108    private System.Windows.Forms.ComboBox comboBox1;
109    private System.Windows.Forms.Button btnAdd;
110    private System.Windows.Forms.Button btnClose;
111  }
112}
Note: See TracBrowser for help on using the repository browser.