1 | namespace HeuristicLab.Clients.Access.Administration {
|
---|
2 | partial class UserGroupView {
|
---|
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 Component 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.label1 = new System.Windows.Forms.Label();
|
---|
27 | this.label2 = new System.Windows.Forms.Label();
|
---|
28 | this.groupNameTextBox = new System.Windows.Forms.TextBox();
|
---|
29 | this.idTextBox = new System.Windows.Forms.TextBox();
|
---|
30 | this.SuspendLayout();
|
---|
31 | //
|
---|
32 | // label1
|
---|
33 | //
|
---|
34 | this.label1.AutoSize = true;
|
---|
35 | this.label1.Location = new System.Drawing.Point(3, 6);
|
---|
36 | this.label1.Name = "label1";
|
---|
37 | this.label1.Size = new System.Drawing.Size(70, 13);
|
---|
38 | this.label1.TabIndex = 0;
|
---|
39 | this.label1.Text = "Group Name:";
|
---|
40 | //
|
---|
41 | // label2
|
---|
42 | //
|
---|
43 | this.label2.AutoSize = true;
|
---|
44 | this.label2.Location = new System.Drawing.Point(3, 32);
|
---|
45 | this.label2.Name = "label2";
|
---|
46 | this.label2.Size = new System.Drawing.Size(19, 13);
|
---|
47 | this.label2.TabIndex = 1;
|
---|
48 | this.label2.Text = "Id:";
|
---|
49 | //
|
---|
50 | // groupNameTextBox
|
---|
51 | //
|
---|
52 | this.groupNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
53 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
54 | this.groupNameTextBox.Location = new System.Drawing.Point(79, 3);
|
---|
55 | this.groupNameTextBox.Name = "groupNameTextBox";
|
---|
56 | this.groupNameTextBox.Size = new System.Drawing.Size(282, 20);
|
---|
57 | this.groupNameTextBox.TabIndex = 2;
|
---|
58 | //
|
---|
59 | // idTextBox
|
---|
60 | //
|
---|
61 | this.idTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
62 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
63 | this.idTextBox.Location = new System.Drawing.Point(79, 29);
|
---|
64 | this.idTextBox.Name = "idTextBox";
|
---|
65 | this.idTextBox.Size = new System.Drawing.Size(282, 20);
|
---|
66 | this.idTextBox.TabIndex = 3;
|
---|
67 | //
|
---|
68 | // UserGroupView
|
---|
69 | //
|
---|
70 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
71 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
72 | this.Controls.Add(this.idTextBox);
|
---|
73 | this.Controls.Add(this.groupNameTextBox);
|
---|
74 | this.Controls.Add(this.label2);
|
---|
75 | this.Controls.Add(this.label1);
|
---|
76 | this.Name = "UserGroupView";
|
---|
77 | this.Size = new System.Drawing.Size(364, 54);
|
---|
78 | this.ResumeLayout(false);
|
---|
79 | this.PerformLayout();
|
---|
80 |
|
---|
81 | }
|
---|
82 |
|
---|
83 | #endregion
|
---|
84 |
|
---|
85 | private System.Windows.Forms.Label label1;
|
---|
86 | private System.Windows.Forms.Label label2;
|
---|
87 | private System.Windows.Forms.TextBox groupNameTextBox;
|
---|
88 | private System.Windows.Forms.TextBox idTextBox;
|
---|
89 | }
|
---|
90 | }
|
---|