Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Console/3.2/AddGroup.Designer.cs @ 1832

Last change on this file since 1832 was 1832, checked in by aleitner, 15 years ago

add contextmenu for adding/deleting groups (#626)

File size: 3.3 KB
Line 
1namespace HeuristicLab.Hive.Server.ServerConsole {
2  partial class AddGroup {
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      // AddGroup
72      //
73      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
74      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
75      this.ClientSize = new System.Drawing.Size(337, 70);
76      this.Controls.Add(this.tbName);
77      this.Controls.Add(this.lblName);
78      this.Controls.Add(this.btnClose);
79      this.Controls.Add(this.btnAdd);
80      this.Name = "AddGroup";
81      this.Text = "AddGroup";
82      this.ResumeLayout(false);
83      this.PerformLayout();
84
85    }
86
87    #endregion
88
89    private System.Windows.Forms.TextBox tbName;
90    private System.Windows.Forms.Label lblName;
91    private System.Windows.Forms.Button btnClose;
92    private System.Windows.Forms.Button btnAdd;
93  }
94}
Note: See TracBrowser for help on using the repository browser.