c969-project/C969Project/Forms/LoginForm.Designer.cs
2025-06-26 21:10:19 -05:00

108 lines
4.0 KiB
C#

namespace C969Project
{
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()
{
usernameTextBox = new System.Windows.Forms.TextBox();
passwordTextBox = new System.Windows.Forms.TextBox();
loginButton = new System.Windows.Forms.Button();
panel1 = new System.Windows.Forms.Panel();
loginLabel = new System.Windows.Forms.Label();
panel1.SuspendLayout();
SuspendLayout();
//
// usernameTextBox
//
usernameTextBox.Location = new System.Drawing.Point(241, 147);
usernameTextBox.Name = "usernameTextBox";
usernameTextBox.PlaceholderText = "Username";
usernameTextBox.Size = new System.Drawing.Size(228, 23);
usernameTextBox.TabIndex = 1;
//
// passwordTextBox
//
passwordTextBox.Location = new System.Drawing.Point(241, 205);
passwordTextBox.Name = "passwordTextBox";
passwordTextBox.PlaceholderText = "Password";
passwordTextBox.Size = new System.Drawing.Size(228, 23);
passwordTextBox.TabIndex = 2;
//
// loginButton
//
loginButton.Location = new System.Drawing.Point(241, 259);
loginButton.Name = "loginButton";
loginButton.Size = new System.Drawing.Size(228, 23);
loginButton.TabIndex = 3;
loginButton.Text = "Login";
loginButton.UseVisualStyleBackColor = true;
//
// panel1
//
panel1.Controls.Add(loginLabel);
panel1.Controls.Add(loginButton);
panel1.Controls.Add(passwordTextBox);
panel1.Controls.Add(usernameTextBox);
panel1.Location = new System.Drawing.Point(12, 12);
panel1.Name = "panel1";
panel1.Size = new System.Drawing.Size(776, 426);
panel1.TabIndex = 0;
//
// loginLabel
//
loginLabel.Font = new System.Drawing.Font("Segoe UI", 10F);
loginLabel.Location = new System.Drawing.Point(241, 99);
loginLabel.Name = "loginLabel";
loginLabel.Size = new System.Drawing.Size(228, 40);
loginLabel.TabIndex = 4;
loginLabel.Text = "Login";
loginLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// LoginForm
//
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(800, 450);
Controls.Add(panel1);
Text = "Login";
panel1.ResumeLayout(false);
panel1.PerformLayout();
ResumeLayout(false);
}
private System.Windows.Forms.Label loginLabel;
private System.Windows.Forms.TextBox usernameTextBox;
private System.Windows.Forms.TextBox passwordTextBox;
private System.Windows.Forms.Button loginButton;
private System.Windows.Forms.Panel panel1;
#endregion
}
}