narsil/Tanshu.Accounts.PointOfSale/User Management/UserForm.Designer.cs

171 lines
7.0 KiB
C#

namespace Tanshu.Accounts.PointOfSale
{
partial class UserForm
{
/// <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()
{
this.label1 = new System.Windows.Forms.Label();
this.txtUsername = new System.Windows.Forms.TextBox();
this.txtPassword = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.chkLocked = new System.Windows.Forms.CheckBox();
this.btnDelete = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.txtRetype = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(60, 13);
this.label1.TabIndex = 7;
this.label1.Text = "User Name";
//
// txtUsername
//
this.txtUsername.Location = new System.Drawing.Point(78, 12);
this.txtUsername.Name = "txtUsername";
this.txtUsername.Size = new System.Drawing.Size(188, 20);
this.txtUsername.TabIndex = 0;
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(78, 38);
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(188, 20);
this.txtPassword.TabIndex = 1;
this.txtPassword.UseSystemPasswordChar = true;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(19, 38);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 13);
this.label2.TabIndex = 8;
this.label2.Text = "Password";
//
// chkLocked
//
this.chkLocked.AutoSize = true;
this.chkLocked.Location = new System.Drawing.Point(78, 90);
this.chkLocked.Name = "chkLocked";
this.chkLocked.Size = new System.Drawing.Size(82, 17);
this.chkLocked.TabIndex = 3;
this.chkLocked.Text = "Locked Out";
this.chkLocked.UseVisualStyleBackColor = true;
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(96, 113);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(78, 23);
this.btnDelete.TabIndex = 5;
this.btnDelete.Text = "&Delete";
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(180, 113);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(85, 23);
this.btnCancel.TabIndex = 6;
this.btnCancel.Text = "&Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(12, 113);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(78, 23);
this.btnSave.TabIndex = 4;
this.btnSave.Text = "&Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// txtRetype
//
this.txtRetype.Location = new System.Drawing.Point(78, 65);
this.txtRetype.Name = "txtRetype";
this.txtRetype.Size = new System.Drawing.Size(188, 20);
this.txtRetype.TabIndex = 2;
this.txtRetype.UseSystemPasswordChar = true;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(31, 65);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(41, 13);
this.label3.TabIndex = 9;
this.label3.Text = "Retype";
//
// UserForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(300, 148);
this.Controls.Add(this.txtRetype);
this.Controls.Add(this.label3);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnDelete);
this.Controls.Add(this.chkLocked);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtUsername);
this.Controls.Add(this.label1);
this.MaximizeBox = false;
this.Name = "UserForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "User";
this.Load += new System.EventHandler(this.UserForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtUsername;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.CheckBox chkLocked;
private System.Windows.Forms.Button btnDelete;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.TextBox txtRetype;
private System.Windows.Forms.Label label3;
}
}