c969-project/C969Project/Login.Designer.cs
Spudnut2000 189a7b227e Init
2025-05-28 02:26:54 +00:00

110 lines
3.6 KiB
C#

namespace C969Project
{
partial class Login
{
/// <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()
{
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;
}
}