namespace C969Project { partial class Login { /// /// 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() { panel1 = new Panel(); label1 = new Label(); usernameTextBox = new TextBox(); passwordTextBox = new TextBox(); button1 = new Button(); panel1.SuspendLayout(); SuspendLayout(); // // panel1 // panel1.Anchor = AnchorStyles.None; panel1.Controls.Add(label1); panel1.Controls.Add(usernameTextBox); panel1.Controls.Add(passwordTextBox); panel1.Controls.Add(button1); panel1.Location = new Point(252, 68); panel1.Name = "panel1"; panel1.Size = new Size(300, 300); panel1.TabIndex = 0; // // label1 // label1.AutoSize = true; label1.Font = new Font("Segoe UI", 12F); label1.Location = new Point(133, 49); label1.Name = "label1"; label1.Size = new Size(49, 21); label1.TabIndex = 3; label1.Text = "Login"; // // usernameTextBox // usernameTextBox.AccessibleName = "username"; usernameTextBox.Location = new Point(72, 104); usernameTextBox.Name = "usernameTextBox"; usernameTextBox.PlaceholderText = "Username"; usernameTextBox.Size = new Size(173, 23); usernameTextBox.TabIndex = 2; // // passwordTextBox // passwordTextBox.Location = new Point(72, 144); passwordTextBox.Name = "passwordTextBox"; passwordTextBox.PasswordChar = '*'; passwordTextBox.PlaceholderText = "Password"; passwordTextBox.Size = new Size(173, 23); passwordTextBox.TabIndex = 1; passwordTextBox.UseSystemPasswordChar = true; // // button1 // button1.Location = new Point(72, 183); button1.Name = "button1"; button1.Size = new Size(173, 23); button1.TabIndex = 0; button1.Text = "Login"; button1.UseVisualStyleBackColor = true; // // Login // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(panel1); Name = "Login"; Text = "Login"; panel1.ResumeLayout(false); panel1.PerformLayout(); ResumeLayout(false); } #endregion private Panel panel1; private Label label1; private TextBox usernameTextBox; private TextBox passwordTextBox; private Button button1; } }