namespace WindowsFormsApplication1 { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { 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.loginButton = new System.Windows.Forms.Button(); this.historyWindowButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // usernameTextBox // this.usernameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.usernameTextBox.Location = new System.Drawing.Point(71, 12); this.usernameTextBox.Name = "usernameTextBox"; this.usernameTextBox.Size = new System.Drawing.Size(172, 20); this.usernameTextBox.TabIndex = 1; this.usernameTextBox.Text = "philip"; // // passwordTextBox // this.passwordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.passwordTextBox.Location = new System.Drawing.Point(71, 38); this.passwordTextBox.Name = "passwordTextBox"; this.passwordTextBox.PasswordChar = '~'; this.passwordTextBox.Size = new System.Drawing.Size(172, 20); this.passwordTextBox.TabIndex = 3; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 15); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(53, 13); this.label1.TabIndex = 0; this.label1.Text = "username"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(13, 41); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(52, 13); this.label2.TabIndex = 2; this.label2.Text = "password"; // // loginButton // this.loginButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.loginButton.Location = new System.Drawing.Point(16, 64); this.loginButton.Name = "loginButton"; this.loginButton.Size = new System.Drawing.Size(227, 23); this.loginButton.TabIndex = 8; this.loginButton.Text = "Log In"; this.loginButton.UseVisualStyleBackColor = true; this.loginButton.Click += new System.EventHandler(this.loginButton_Click); // // historyWindowButton // this.historyWindowButton.Location = new System.Drawing.Point(16, 111); this.historyWindowButton.Name = "historyWindowButton"; this.historyWindowButton.Size = new System.Drawing.Size(89, 23); this.historyWindowButton.TabIndex = 12; this.historyWindowButton.Text = "History Window"; this.historyWindowButton.UseVisualStyleBackColor = true; this.historyWindowButton.Click += new System.EventHandler(this.historyWindowButton_Click); // // Form1 // this.AcceptButton = this.loginButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(257, 147); this.Controls.Add(this.historyWindowButton); this.Controls.Add(this.loginButton); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.passwordTextBox); this.Controls.Add(this.usernameTextBox); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); this.PerformLayout(); } #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.Button loginButton; private System.Windows.Forms.Button historyWindowButton; } }