Commit for development environment setup
This commit is contained in:
141
PROMS/csla20cs-2.1.4-070223/csla20cs/ProjectTracker20cs/PTWin/LoginForm.Designer.cs
generated
Normal file
141
PROMS/csla20cs-2.1.4-070223/csla20cs/ProjectTracker20cs/PTWin/LoginForm.Designer.cs
generated
Normal file
@@ -0,0 +1,141 @@
|
||||
namespace PTWin
|
||||
{
|
||||
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()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoginForm));
|
||||
this.Cancel = new System.Windows.Forms.Button();
|
||||
this.OK = new System.Windows.Forms.Button();
|
||||
this.PasswordTextBox = new System.Windows.Forms.TextBox();
|
||||
this.UsernameTextBox = new System.Windows.Forms.TextBox();
|
||||
this.PasswordLabel = new System.Windows.Forms.Label();
|
||||
this.UsernameLabel = new System.Windows.Forms.Label();
|
||||
this.LogoPictureBox = new System.Windows.Forms.PictureBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.LogoPictureBox)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// Cancel
|
||||
//
|
||||
this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||
this.Cancel.Location = new System.Drawing.Point(300, 161);
|
||||
this.Cancel.Name = "Cancel";
|
||||
this.Cancel.Size = new System.Drawing.Size(94, 23);
|
||||
this.Cancel.TabIndex = 12;
|
||||
this.Cancel.Text = "&Cancel";
|
||||
this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
|
||||
//
|
||||
// OK
|
||||
//
|
||||
this.OK.Location = new System.Drawing.Point(197, 161);
|
||||
this.OK.Name = "OK";
|
||||
this.OK.Size = new System.Drawing.Size(94, 23);
|
||||
this.OK.TabIndex = 11;
|
||||
this.OK.Text = "&OK";
|
||||
this.OK.Click += new System.EventHandler(this.OK_Click);
|
||||
//
|
||||
// PasswordTextBox
|
||||
//
|
||||
this.PasswordTextBox.Location = new System.Drawing.Point(174, 101);
|
||||
this.PasswordTextBox.Name = "PasswordTextBox";
|
||||
this.PasswordTextBox.PasswordChar = '*';
|
||||
this.PasswordTextBox.Size = new System.Drawing.Size(220, 20);
|
||||
this.PasswordTextBox.TabIndex = 10;
|
||||
//
|
||||
// UsernameTextBox
|
||||
//
|
||||
this.UsernameTextBox.Location = new System.Drawing.Point(174, 44);
|
||||
this.UsernameTextBox.Name = "UsernameTextBox";
|
||||
this.UsernameTextBox.Size = new System.Drawing.Size(220, 20);
|
||||
this.UsernameTextBox.TabIndex = 8;
|
||||
//
|
||||
// PasswordLabel
|
||||
//
|
||||
this.PasswordLabel.Location = new System.Drawing.Point(172, 81);
|
||||
this.PasswordLabel.Name = "PasswordLabel";
|
||||
this.PasswordLabel.Size = new System.Drawing.Size(220, 23);
|
||||
this.PasswordLabel.TabIndex = 9;
|
||||
this.PasswordLabel.Text = "&Password";
|
||||
this.PasswordLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// UsernameLabel
|
||||
//
|
||||
this.UsernameLabel.Location = new System.Drawing.Point(172, 24);
|
||||
this.UsernameLabel.Name = "UsernameLabel";
|
||||
this.UsernameLabel.Size = new System.Drawing.Size(220, 23);
|
||||
this.UsernameLabel.TabIndex = 6;
|
||||
this.UsernameLabel.Text = "&User name";
|
||||
this.UsernameLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// LogoPictureBox
|
||||
//
|
||||
this.LogoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("LogoPictureBox.Image")));
|
||||
this.LogoPictureBox.Location = new System.Drawing.Point(0, 0);
|
||||
this.LogoPictureBox.Name = "LogoPictureBox";
|
||||
this.LogoPictureBox.Size = new System.Drawing.Size(165, 193);
|
||||
this.LogoPictureBox.TabIndex = 7;
|
||||
this.LogoPictureBox.TabStop = false;
|
||||
//
|
||||
// LoginForm
|
||||
//
|
||||
this.AcceptButton = this.OK;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.CancelButton = this.Cancel;
|
||||
this.ClientSize = new System.Drawing.Size(401, 192);
|
||||
this.Controls.Add(this.Cancel);
|
||||
this.Controls.Add(this.OK);
|
||||
this.Controls.Add(this.PasswordTextBox);
|
||||
this.Controls.Add(this.UsernameTextBox);
|
||||
this.Controls.Add(this.PasswordLabel);
|
||||
this.Controls.Add(this.UsernameLabel);
|
||||
this.Controls.Add(this.LogoPictureBox);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "LoginForm";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Log in";
|
||||
this.Load += new System.EventHandler(this.LoginForm_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.LogoPictureBox)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
internal System.Windows.Forms.Button Cancel;
|
||||
internal System.Windows.Forms.Button OK;
|
||||
internal System.Windows.Forms.TextBox PasswordTextBox;
|
||||
internal System.Windows.Forms.TextBox UsernameTextBox;
|
||||
internal System.Windows.Forms.Label PasswordLabel;
|
||||
internal System.Windows.Forms.Label UsernameLabel;
|
||||
internal System.Windows.Forms.PictureBox LogoPictureBox;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user