130 lines
5.4 KiB
C#
130 lines
5.4 KiB
C#
namespace OpenSaveCloudClient
|
|
{
|
|
partial class AddUser
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddUser));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.UsernameBox = new System.Windows.Forms.TextBox();
|
|
this.PasswordBox = new System.Windows.Forms.TextBox();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.label1.ForeColor = System.Drawing.SystemColors.Highlight;
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(154, 32);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Create a user";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 72);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(60, 15);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "Username";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(12, 129);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(57, 15);
|
|
this.label3.TabIndex = 2;
|
|
this.label3.Text = "Password";
|
|
//
|
|
// UsernameBox
|
|
//
|
|
this.UsernameBox.Location = new System.Drawing.Point(12, 90);
|
|
this.UsernameBox.Name = "UsernameBox";
|
|
this.UsernameBox.Size = new System.Drawing.Size(457, 23);
|
|
this.UsernameBox.TabIndex = 3;
|
|
this.UsernameBox.TextChanged += new System.EventHandler(this.UsernameBox_TextChanged);
|
|
//
|
|
// PasswordBox
|
|
//
|
|
this.PasswordBox.Location = new System.Drawing.Point(12, 147);
|
|
this.PasswordBox.Name = "PasswordBox";
|
|
this.PasswordBox.Size = new System.Drawing.Size(457, 23);
|
|
this.PasswordBox.TabIndex = 4;
|
|
this.PasswordBox.TextChanged += new System.EventHandler(this.UsernameBox_TextChanged);
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Enabled = false;
|
|
this.button1.Location = new System.Drawing.Point(394, 203);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|
this.button1.TabIndex = 5;
|
|
this.button1.Text = "Create";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// AddUser
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.BackColor = System.Drawing.SystemColors.Window;
|
|
this.ClientSize = new System.Drawing.Size(481, 238);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.PasswordBox);
|
|
this.Controls.Add(this.UsernameBox);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximumSize = new System.Drawing.Size(497, 277);
|
|
this.MinimumSize = new System.Drawing.Size(497, 277);
|
|
this.Name = "AddUser";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "AddUser";
|
|
this.Load += new System.EventHandler(this.AddUser_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label label2;
|
|
private Label label3;
|
|
private TextBox UsernameBox;
|
|
private TextBox PasswordBox;
|
|
private Button button1;
|
|
}
|
|
} |