71 lines
2.5 KiB
C#
71 lines
2.5 KiB
C#
namespace ErgometerDoctorApplication
|
|
{
|
|
partial class LoginWindow
|
|
{
|
|
/// <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()
|
|
{
|
|
this.LoginButton = new System.Windows.Forms.Button();
|
|
this.PasswordTextBox = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// LoginButton
|
|
//
|
|
this.LoginButton.Location = new System.Drawing.Point(197, 12);
|
|
this.LoginButton.Name = "LoginButton";
|
|
this.LoginButton.Size = new System.Drawing.Size(75, 23);
|
|
this.LoginButton.TabIndex = 0;
|
|
this.LoginButton.Text = "Login";
|
|
this.LoginButton.UseVisualStyleBackColor = true;
|
|
this.LoginButton.Click += new System.EventHandler(this.LoginButton_Click);
|
|
//
|
|
// PasswordTextBox
|
|
//
|
|
this.PasswordTextBox.Location = new System.Drawing.Point(13, 13);
|
|
this.PasswordTextBox.Name = "PasswordTextBox";
|
|
this.PasswordTextBox.Size = new System.Drawing.Size(178, 20);
|
|
this.PasswordTextBox.TabIndex = 1;
|
|
//
|
|
// LoginWindow
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(284, 53);
|
|
this.Controls.Add(this.PasswordTextBox);
|
|
this.Controls.Add(this.LoginButton);
|
|
this.Name = "LoginWindow";
|
|
this.Text = "LoginWindow";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button LoginButton;
|
|
private System.Windows.Forms.TextBox PasswordTextBox;
|
|
}
|
|
} |