namespace Demo.WindowsMobile{
partial class LoginForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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(LoginForm));
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.UserNameTextBox = new System.Windows.Forms.TextBox();
this.PasswordTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.ErrorLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItem1);
//
// menuItem1
//
this.menuItem1.Text = "Login";
this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
//
// UserNameTextBox
//
this.UserNameTextBox.Location = new System.Drawing.Point(12, 78);
this.UserNameTextBox.Name = "UserNameTextBox";
this.UserNameTextBox.Size = new System.Drawing.Size(152, 22);
this.UserNameTextBox.TabIndex = 0;
//
// PasswordTextBox
//
this.PasswordTextBox.Location = new System.Drawing.Point(12, 119);
this.PasswordTextBox.Name = "PasswordTextBox";
this.PasswordTextBox.Size = new System.Drawing.Size(152, 22);
this.PasswordTextBox.TabIndex = 1;
//
// label1
//
this.label1.Location = new System.Drawing.Point(12, 63);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(61, 15);
this.label1.Text = "Username:";
//
// label2
//
this.label2.Location = new System.Drawing.Point(12, 104);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(61, 15);
this.label2.Text = "Password:";
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(52, 0);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(69, 60);
//
// ErrorLabel
//
this.ErrorLabel.Font = new System.Drawing.Font("Segoe Condensed", 8F, System.Drawing.FontStyle.Bold);
this.ErrorLabel.ForeColor = System.Drawing.Color.Red;
this.ErrorLabel.Location = new System.Drawing.Point(12, 145);
this.ErrorLabel.Name = "ErrorLabel";
this.ErrorLabel.Size = new System.Drawing.Size(152, 14);
this.ErrorLabel.Text = "Login Failed";
this.ErrorLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.ErrorLabel.Visible = false;
//
// LoginForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(176, 180);
this.Controls.Add(this.ErrorLabel);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.PasswordTextBox);
this.Controls.Add(this.UserNameTextBox);
this.Menu = this.mainMenu1;
this.Name = "LoginForm";
this.Text = "Login";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox UserNameTextBox;
private System.Windows.Forms.TextBox PasswordTextBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label ErrorLabel;
}
}
|