ui work
This commit is contained in:
93
C969Project/LoginForm.Designer.cs
generated
Normal file
93
C969Project/LoginForm.Designer.cs
generated
Normal file
@@ -0,0 +1,93 @@
|
||||
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();
|
||||
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(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;
|
||||
//
|
||||
// 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 = "Form1";
|
||||
panel1.ResumeLayout(false);
|
||||
panel1.PerformLayout();
|
||||
ResumeLayout(false);
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user