1 | namespace HeuristicLab.Hive.Server.ServerConsole {
|
---|
2 | partial class AddProject {
|
---|
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.tbName = new System.Windows.Forms.TextBox();
|
---|
27 | this.lblName = new System.Windows.Forms.Label();
|
---|
28 | this.btnClose = new System.Windows.Forms.Button();
|
---|
29 | this.btnAdd = new System.Windows.Forms.Button();
|
---|
30 | this.SuspendLayout();
|
---|
31 | //
|
---|
32 | // tbName
|
---|
33 | //
|
---|
34 | this.tbName.Location = new System.Drawing.Point(45, 6);
|
---|
35 | this.tbName.Name = "tbName";
|
---|
36 | this.tbName.Size = new System.Drawing.Size(276, 20);
|
---|
37 | this.tbName.TabIndex = 7;
|
---|
38 | this.tbName.TextChanged += new System.EventHandler(this.tbName_TextChanged);
|
---|
39 | //
|
---|
40 | // lblName
|
---|
41 | //
|
---|
42 | this.lblName.AutoSize = true;
|
---|
43 | this.lblName.Location = new System.Drawing.Point(4, 9);
|
---|
44 | this.lblName.Name = "lblName";
|
---|
45 | this.lblName.Size = new System.Drawing.Size(35, 13);
|
---|
46 | this.lblName.TabIndex = 10;
|
---|
47 | this.lblName.Text = "Name";
|
---|
48 | //
|
---|
49 | // btnClose
|
---|
50 | //
|
---|
51 | this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
52 | this.btnClose.Location = new System.Drawing.Point(246, 36);
|
---|
53 | this.btnClose.Name = "btnClose";
|
---|
54 | this.btnClose.Size = new System.Drawing.Size(75, 23);
|
---|
55 | this.btnClose.TabIndex = 9;
|
---|
56 | this.btnClose.Text = "Close";
|
---|
57 | this.btnClose.UseVisualStyleBackColor = true;
|
---|
58 | this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
---|
59 | //
|
---|
60 | // btnAdd
|
---|
61 | //
|
---|
62 | this.btnAdd.Enabled = false;
|
---|
63 | this.btnAdd.Location = new System.Drawing.Point(7, 36);
|
---|
64 | this.btnAdd.Name = "btnAdd";
|
---|
65 | this.btnAdd.Size = new System.Drawing.Size(75, 23);
|
---|
66 | this.btnAdd.TabIndex = 8;
|
---|
67 | this.btnAdd.Text = "Add";
|
---|
68 | this.btnAdd.UseVisualStyleBackColor = true;
|
---|
69 | this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
|
---|
70 | //
|
---|
71 | // AddProject
|
---|
72 | //
|
---|
73 | this.AcceptButton = this.btnAdd;
|
---|
74 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
75 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
76 | this.CancelButton = this.btnClose;
|
---|
77 | this.ClientSize = new System.Drawing.Size(337, 70);
|
---|
78 | this.Controls.Add(this.tbName);
|
---|
79 | this.Controls.Add(this.lblName);
|
---|
80 | this.Controls.Add(this.btnClose);
|
---|
81 | this.Controls.Add(this.btnAdd);
|
---|
82 | this.Name = "AddProject";
|
---|
83 | this.Text = "AddProject";
|
---|
84 | this.ResumeLayout(false);
|
---|
85 | this.PerformLayout();
|
---|
86 |
|
---|
87 | }
|
---|
88 |
|
---|
89 | #endregion
|
---|
90 |
|
---|
91 | private System.Windows.Forms.TextBox tbName;
|
---|
92 | private System.Windows.Forms.Label lblName;
|
---|
93 | private System.Windows.Forms.Button btnClose;
|
---|
94 | private System.Windows.Forms.Button btnAdd;
|
---|
95 | }
|
---|
96 | } |
---|