85 lines
2.7 KiB
C#
85 lines
2.7 KiB
C#
|
|
namespace NikiforovaMV
|
|||
|
|
{
|
|||
|
|
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()
|
|||
|
|
{
|
|||
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|||
|
|
button1 = new Button();
|
|||
|
|
textBox1 = new TextBox();
|
|||
|
|
textBox2 = new TextBox();
|
|||
|
|
SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// button1
|
|||
|
|
//
|
|||
|
|
button1.Location = new Point(344, 271);
|
|||
|
|
button1.Name = "button1";
|
|||
|
|
button1.Size = new Size(114, 23);
|
|||
|
|
button1.TabIndex = 0;
|
|||
|
|
button1.Text = "Авторизация";
|
|||
|
|
button1.UseVisualStyleBackColor = true;
|
|||
|
|
button1.Click += this.button1_Click;
|
|||
|
|
//
|
|||
|
|
// textBox1
|
|||
|
|
//
|
|||
|
|
textBox1.Location = new Point(344, 81);
|
|||
|
|
textBox1.Name = "textBox1";
|
|||
|
|
textBox1.Size = new Size(100, 23);
|
|||
|
|
textBox1.TabIndex = 1;
|
|||
|
|
//
|
|||
|
|
// textBox2
|
|||
|
|
//
|
|||
|
|
textBox2.Location = new Point(344, 174);
|
|||
|
|
textBox2.Name = "textBox2";
|
|||
|
|
textBox2.Size = new Size(100, 23);
|
|||
|
|
textBox2.TabIndex = 2;
|
|||
|
|
//
|
|||
|
|
// Form1
|
|||
|
|
//
|
|||
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
|
AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|||
|
|
BackColor = Color.FromArgb(250, 250, 250);
|
|||
|
|
ClientSize = new Size(800, 450);
|
|||
|
|
Controls.Add(textBox2);
|
|||
|
|
Controls.Add(textBox1);
|
|||
|
|
Controls.Add(button1);
|
|||
|
|
Icon = (Icon)resources.GetObject("$this.Icon");
|
|||
|
|
Name = "Form1";
|
|||
|
|
Text = "АвтоМастер";
|
|||
|
|
ResumeLayout(false);
|
|||
|
|
PerformLayout();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private Button button1;
|
|||
|
|
private TextBox textBox1;
|
|||
|
|
private TextBox textBox2;
|
|||
|
|
}
|
|||
|
|
}
|