Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1648 started working on a user administration interface

File size: 3.4 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.Location = new System.Drawing.Point(72, 3);
55      this.userNameTextBox.Name = "userNameTextBox";
56      this.userNameTextBox.Size = new System.Drawing.Size(289, 20);
57      this.userNameTextBox.TabIndex = 2;
58      //
59      // fullNameTextBox
60      //
61      this.fullNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
62                  | System.Windows.Forms.AnchorStyles.Right)));
63      this.fullNameTextBox.Location = new System.Drawing.Point(72, 29);
64      this.fullNameTextBox.Name = "fullNameTextBox";
65      this.fullNameTextBox.Size = new System.Drawing.Size(289, 20);
66      this.fullNameTextBox.TabIndex = 3;
67      //
68      // UserView
69      //
70      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
71      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
72      this.Controls.Add(this.fullNameTextBox);
73      this.Controls.Add(this.userNameTextBox);
74      this.Controls.Add(this.label2);
75      this.Controls.Add(this.label1);
76      this.Name = "UserView";
77      this.Size = new System.Drawing.Size(364, 106);
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 userNameTextBox;
88    private System.Windows.Forms.TextBox fullNameTextBox;
89  }
90}
Note: See TracBrowser for help on using the repository browser.