96 lines
3.8 KiB
C#
96 lines
3.8 KiB
C#
namespace Musical
|
||
{
|
||
partial class Form1
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором форм Windows
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.txtUsername = new System.Windows.Forms.TextBox();
|
||
this.txtPassword = new System.Windows.Forms.TextBox();
|
||
this.btnLogin = new System.Windows.Forms.Button();
|
||
this.lblError = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// txtUsername
|
||
//
|
||
this.txtUsername.Location = new System.Drawing.Point(190, 109);
|
||
this.txtUsername.Name = "txtUsername";
|
||
this.txtUsername.Size = new System.Drawing.Size(100, 20);
|
||
this.txtUsername.TabIndex = 0;
|
||
//
|
||
// txtPassword
|
||
//
|
||
this.txtPassword.Location = new System.Drawing.Point(190, 176);
|
||
this.txtPassword.Name = "txtPassword";
|
||
this.txtPassword.Size = new System.Drawing.Size(100, 20);
|
||
this.txtPassword.TabIndex = 1;
|
||
//
|
||
// btnLogin
|
||
//
|
||
this.btnLogin.Location = new System.Drawing.Point(190, 235);
|
||
this.btnLogin.Name = "btnLogin";
|
||
this.btnLogin.Size = new System.Drawing.Size(75, 23);
|
||
this.btnLogin.TabIndex = 2;
|
||
this.btnLogin.Text = "button1";
|
||
this.btnLogin.UseVisualStyleBackColor = true;
|
||
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
|
||
//
|
||
// lblError
|
||
//
|
||
this.lblError.AutoSize = true;
|
||
this.lblError.Location = new System.Drawing.Point(190, 290);
|
||
this.lblError.Name = "lblError";
|
||
this.lblError.Size = new System.Drawing.Size(35, 13);
|
||
this.lblError.TabIndex = 3;
|
||
this.lblError.Text = "label1";
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(800, 494);
|
||
this.Controls.Add(this.lblError);
|
||
this.Controls.Add(this.btnLogin);
|
||
this.Controls.Add(this.txtPassword);
|
||
this.Controls.Add(this.txtUsername);
|
||
this.Name = "Form1";
|
||
this.Text = "Form1";
|
||
this.Load += new System.EventHandler(this.Form1_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox txtUsername;
|
||
private System.Windows.Forms.TextBox txtPassword;
|
||
private System.Windows.Forms.Button btnLogin;
|
||
private System.Windows.Forms.Label lblError;
|
||
}
|
||
}
|
||
|