134 lines
5.5 KiB
C#
134 lines
5.5 KiB
C#
namespace Tanshu.Accounts.PointOfSale
|
|
{
|
|
partial class LoginForm
|
|
{
|
|
/// <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.btnExit = new System.Windows.Forms.Button();
|
|
this.btnLogin = new System.Windows.Forms.Button();
|
|
this.txtPassword = new System.Windows.Forms.TextBox();
|
|
this.Label2 = new System.Windows.Forms.Label();
|
|
this.txtUserName = new System.Windows.Forms.TextBox();
|
|
this.Label1 = new System.Windows.Forms.Label();
|
|
this.numpadControl1 = new Tanshu.Common.KeyboardControl.NumpadControl();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnExit
|
|
//
|
|
this.btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnExit.Location = new System.Drawing.Point(203, 64);
|
|
this.btnExit.Name = "btnExit";
|
|
this.btnExit.Size = new System.Drawing.Size(75, 23);
|
|
this.btnExit.TabIndex = 3;
|
|
this.btnExit.Text = "E&xit";
|
|
this.btnExit.UseVisualStyleBackColor = true;
|
|
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
|
|
//
|
|
// btnLogin
|
|
//
|
|
this.btnLogin.Location = new System.Drawing.Point(78, 64);
|
|
this.btnLogin.Name = "btnLogin";
|
|
this.btnLogin.Size = new System.Drawing.Size(75, 23);
|
|
this.btnLogin.TabIndex = 2;
|
|
this.btnLogin.Text = "&Login";
|
|
this.btnLogin.UseVisualStyleBackColor = true;
|
|
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
|
|
//
|
|
// txtPassword
|
|
//
|
|
this.txtPassword.Location = new System.Drawing.Point(78, 38);
|
|
this.txtPassword.Name = "txtPassword";
|
|
this.txtPassword.PasswordChar = '*';
|
|
this.txtPassword.Size = new System.Drawing.Size(200, 20);
|
|
this.txtPassword.TabIndex = 1;
|
|
this.txtPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPassword_KeyDown);
|
|
//
|
|
// Label2
|
|
//
|
|
this.Label2.Location = new System.Drawing.Point(12, 41);
|
|
this.Label2.Name = "Label2";
|
|
this.Label2.Size = new System.Drawing.Size(60, 20);
|
|
this.Label2.TabIndex = 5;
|
|
this.Label2.Text = "Password";
|
|
//
|
|
// txtUserName
|
|
//
|
|
this.txtUserName.Location = new System.Drawing.Point(78, 12);
|
|
this.txtUserName.Name = "txtUserName";
|
|
this.txtUserName.Size = new System.Drawing.Size(200, 20);
|
|
this.txtUserName.TabIndex = 0;
|
|
this.txtUserName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtUserName_KeyDown);
|
|
//
|
|
// Label1
|
|
//
|
|
this.Label1.Location = new System.Drawing.Point(12, 15);
|
|
this.Label1.Name = "Label1";
|
|
this.Label1.Size = new System.Drawing.Size(60, 20);
|
|
this.Label1.TabIndex = 4;
|
|
this.Label1.Text = "Username";
|
|
//
|
|
// numpadControl1
|
|
//
|
|
this.numpadControl1.Location = new System.Drawing.Point(35, 93);
|
|
this.numpadControl1.Name = "numpadControl1";
|
|
this.numpadControl1.Size = new System.Drawing.Size(224, 224);
|
|
this.numpadControl1.TabIndex = 6;
|
|
this.numpadControl1.TabStop = false;
|
|
//
|
|
// LoginForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnExit;
|
|
this.ClientSize = new System.Drawing.Size(290, 329);
|
|
this.Controls.Add(this.numpadControl1);
|
|
this.Controls.Add(this.txtPassword);
|
|
this.Controls.Add(this.Label2);
|
|
this.Controls.Add(this.txtUserName);
|
|
this.Controls.Add(this.Label1);
|
|
this.Controls.Add(this.btnLogin);
|
|
this.Controls.Add(this.btnExit);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Name = "LoginForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Login";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnExit;
|
|
private System.Windows.Forms.Button btnLogin;
|
|
internal System.Windows.Forms.TextBox txtPassword;
|
|
internal System.Windows.Forms.Label Label2;
|
|
internal System.Windows.Forms.TextBox txtUserName;
|
|
internal System.Windows.Forms.Label Label1;
|
|
private Tanshu.Common.KeyboardControl.NumpadControl numpadControl1;
|
|
}
|
|
} |