80 lines
2.4 KiB
C#
80 lines
2.4 KiB
C#
namespace WinFormsApp7
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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()
|
|
{
|
|
textBox1 = new TextBox();
|
|
textBox2 = new TextBox();
|
|
button1 = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// textBox1
|
|
//
|
|
textBox1.Location = new Point(138, 128);
|
|
textBox1.Name = "textBox1";
|
|
textBox1.Size = new Size(100, 23);
|
|
textBox1.TabIndex = 0;
|
|
//
|
|
// textBox2
|
|
//
|
|
textBox2.Location = new Point(138, 172);
|
|
textBox2.Name = "textBox2";
|
|
textBox2.Size = new Size(100, 23);
|
|
textBox2.TabIndex = 1;
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new Point(138, 221);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(100, 26);
|
|
button1.TabIndex = 2;
|
|
button1.Text = "Вход";
|
|
button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// Form1
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(369, 450);
|
|
Controls.Add(button1);
|
|
Controls.Add(textBox2);
|
|
Controls.Add(textBox1);
|
|
Name = "Form1";
|
|
Text = "Form1";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBox1;
|
|
private TextBox textBox2;
|
|
private Button button1;
|
|
}
|
|
}
|