Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserGroupView.Designer.cs @ 7637

Last change on this file since 7637 was 7637, checked in by ascheibe, 12 years ago

#1648 added CRUD operations for user groups in ui

File size: 3.5 KB
Line 
1namespace 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      this.groupNameTextBox.TextChanged += new System.EventHandler(this.groupNameTextBox_TextChanged);
59      //
60      // idTextBox
61      //
62      this.idTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
63            | System.Windows.Forms.AnchorStyles.Right)));
64      this.idTextBox.Enabled = false;
65      this.idTextBox.Location = new System.Drawing.Point(79, 29);
66      this.idTextBox.Name = "idTextBox";
67      this.idTextBox.Size = new System.Drawing.Size(282, 20);
68      this.idTextBox.TabIndex = 3;
69      //
70      // UserGroupView
71      //
72      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
73      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
74      this.Controls.Add(this.idTextBox);
75      this.Controls.Add(this.groupNameTextBox);
76      this.Controls.Add(this.label2);
77      this.Controls.Add(this.label1);
78      this.Name = "UserGroupView";
79      this.Size = new System.Drawing.Size(364, 54);
80      this.ResumeLayout(false);
81      this.PerformLayout();
82
83    }
84
85    #endregion
86
87    private System.Windows.Forms.Label label1;
88    private System.Windows.Forms.Label label2;
89    private System.Windows.Forms.TextBox groupNameTextBox;
90    private System.Windows.Forms.TextBox idTextBox;
91  }
92}
Note: See TracBrowser for help on using the repository browser.