Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1648 added CRUD operations for user groups in ui

File size: 3.7 KB
Line 
1namespace HeuristicLab.Clients.Access.Administration {
2  partial class UserView {
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.userNameTextBox = new System.Windows.Forms.TextBox();
29      this.fullNameTextBox = 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(63, 13);
38      this.label1.TabIndex = 0;
39      this.label1.Text = "User 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(57, 13);
47      this.label2.TabIndex = 1;
48      this.label2.Text = "Full Name:";
49      //
50      // userNameTextBox
51      //
52      this.userNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
53            | System.Windows.Forms.AnchorStyles.Right)));
54      this.userNameTextBox.Enabled = false;
55      this.userNameTextBox.Location = new System.Drawing.Point(72, 3);
56      this.userNameTextBox.Name = "userNameTextBox";
57      this.userNameTextBox.Size = new System.Drawing.Size(289, 20);
58      this.userNameTextBox.TabIndex = 2;
59      this.userNameTextBox.TextChanged += new System.EventHandler(this.userNameTextBox_TextChanged);
60      //
61      // fullNameTextBox
62      //
63      this.fullNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
64            | System.Windows.Forms.AnchorStyles.Right)));
65      this.fullNameTextBox.Location = new System.Drawing.Point(72, 29);
66      this.fullNameTextBox.Name = "fullNameTextBox";
67      this.fullNameTextBox.Size = new System.Drawing.Size(289, 20);
68      this.fullNameTextBox.TabIndex = 3;
69      this.fullNameTextBox.TextChanged += new System.EventHandler(this.fullNameTextBox_TextChanged);
70      //
71      // UserView
72      //
73      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
74      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
75      this.Controls.Add(this.fullNameTextBox);
76      this.Controls.Add(this.userNameTextBox);
77      this.Controls.Add(this.label2);
78      this.Controls.Add(this.label1);
79      this.Name = "UserView";
80      this.Size = new System.Drawing.Size(364, 106);
81      this.ResumeLayout(false);
82      this.PerformLayout();
83
84    }
85
86    #endregion
87
88    private System.Windows.Forms.Label label1;
89    private System.Windows.Forms.Label label2;
90    private System.Windows.Forms.TextBox userNameTextBox;
91    private System.Windows.Forms.TextBox fullNameTextBox;
92  }
93}
Note: See TracBrowser for help on using the repository browser.