skud/Form1.Designer.cs

65 lines
2.4 KiB
C#
Raw Permalink Normal View History

namespace WindowsFormsApp1
{
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.components = new System.ComponentModel.Container();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.buttonLogin = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// buttonLogin
//
2025-04-14 22:09:03 +07:00
this.buttonLogin.Location = new System.Drawing.Point(125, 130);
this.buttonLogin.Name = "buttonLogin";
2025-04-14 22:09:03 +07:00
this.buttonLogin.Size = new System.Drawing.Size(100, 30);
this.buttonLogin.TabIndex = 0;
2025-04-14 22:09:03 +07:00
this.buttonLogin.Text = "Войти";
this.buttonLogin.UseVisualStyleBackColor = true;
2025-04-14 22:09:03 +07:00
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2025-04-14 22:09:03 +07:00
this.ClientSize = new System.Drawing.Size(350, 200);
this.Controls.Add(this.buttonLogin);
this.Name = "Form1";
2025-04-14 22:09:03 +07:00
this.Text = "Авторизация";
}
#endregion
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Button buttonLogin;
}
}