148 lines
6.8 KiB
C#
148 lines
6.8 KiB
C#
|
|
namespace auto_repair_shop
|
|||
|
|
{
|
|||
|
|
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()
|
|||
|
|
{
|
|||
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|||
|
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
|
this.button2 = new System.Windows.Forms.Button();
|
|||
|
|
this.button3 = new System.Windows.Forms.Button();
|
|||
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|||
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|||
|
|
this.textBox2 = new System.Windows.Forms.TextBox();
|
|||
|
|
this.textBox3 = new System.Windows.Forms.TextBox();
|
|||
|
|
this.textBox4 = new System.Windows.Forms.TextBox();
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// button1
|
|||
|
|
//
|
|||
|
|
this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(238)))), ((int)(((byte)(255)))));
|
|||
|
|
this.button1.Location = new System.Drawing.Point(679, 276);
|
|||
|
|
this.button1.Name = "button1";
|
|||
|
|
this.button1.Size = new System.Drawing.Size(109, 23);
|
|||
|
|
this.button1.TabIndex = 0;
|
|||
|
|
this.button1.Text = "Добавления";
|
|||
|
|
this.button1.UseVisualStyleBackColor = false;
|
|||
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|||
|
|
//
|
|||
|
|
// button2
|
|||
|
|
//
|
|||
|
|
this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(238)))), ((int)(((byte)(255)))));
|
|||
|
|
this.button2.Location = new System.Drawing.Point(679, 316);
|
|||
|
|
this.button2.Name = "button2";
|
|||
|
|
this.button2.Size = new System.Drawing.Size(109, 23);
|
|||
|
|
this.button2.TabIndex = 1;
|
|||
|
|
this.button2.Text = "Удаление";
|
|||
|
|
this.button2.UseVisualStyleBackColor = false;
|
|||
|
|
this.button2.Click += new System.EventHandler(this.button2_Click);
|
|||
|
|
//
|
|||
|
|
// button3
|
|||
|
|
//
|
|||
|
|
this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(238)))), ((int)(((byte)(255)))));
|
|||
|
|
this.button3.Location = new System.Drawing.Point(679, 355);
|
|||
|
|
this.button3.Name = "button3";
|
|||
|
|
this.button3.Size = new System.Drawing.Size(109, 23);
|
|||
|
|
this.button3.TabIndex = 2;
|
|||
|
|
this.button3.Text = "Редактирвоание";
|
|||
|
|
this.button3.UseVisualStyleBackColor = false;
|
|||
|
|
this.button3.Click += new System.EventHandler(this.button3_Click_1);
|
|||
|
|
//
|
|||
|
|
// dataGridView1
|
|||
|
|
//
|
|||
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
|
this.dataGridView1.Location = new System.Drawing.Point(0, 0);
|
|||
|
|
this.dataGridView1.Name = "dataGridView1";
|
|||
|
|
this.dataGridView1.Size = new System.Drawing.Size(611, 438);
|
|||
|
|
this.dataGridView1.TabIndex = 3;
|
|||
|
|
//
|
|||
|
|
// textBox1
|
|||
|
|
//
|
|||
|
|
this.textBox1.Location = new System.Drawing.Point(688, 12);
|
|||
|
|
this.textBox1.Name = "textBox1";
|
|||
|
|
this.textBox1.Size = new System.Drawing.Size(100, 20);
|
|||
|
|
this.textBox1.TabIndex = 4;
|
|||
|
|
//
|
|||
|
|
// textBox2
|
|||
|
|
//
|
|||
|
|
this.textBox2.Location = new System.Drawing.Point(688, 54);
|
|||
|
|
this.textBox2.Name = "textBox2";
|
|||
|
|
this.textBox2.Size = new System.Drawing.Size(100, 20);
|
|||
|
|
this.textBox2.TabIndex = 5;
|
|||
|
|
//
|
|||
|
|
// textBox3
|
|||
|
|
//
|
|||
|
|
this.textBox3.Location = new System.Drawing.Point(688, 101);
|
|||
|
|
this.textBox3.Name = "textBox3";
|
|||
|
|
this.textBox3.Size = new System.Drawing.Size(100, 20);
|
|||
|
|
this.textBox3.TabIndex = 6;
|
|||
|
|
//
|
|||
|
|
// textBox4
|
|||
|
|
//
|
|||
|
|
this.textBox4.Location = new System.Drawing.Point(688, 146);
|
|||
|
|
this.textBox4.Name = "textBox4";
|
|||
|
|
this.textBox4.Size = new System.Drawing.Size(100, 20);
|
|||
|
|
this.textBox4.TabIndex = 7;
|
|||
|
|
//
|
|||
|
|
// Form1
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(130)))), ((int)(((byte)(246)))));
|
|||
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|||
|
|
this.Controls.Add(this.textBox4);
|
|||
|
|
this.Controls.Add(this.textBox3);
|
|||
|
|
this.Controls.Add(this.textBox2);
|
|||
|
|
this.Controls.Add(this.textBox1);
|
|||
|
|
this.Controls.Add(this.dataGridView1);
|
|||
|
|
this.Controls.Add(this.button3);
|
|||
|
|
this.Controls.Add(this.button2);
|
|||
|
|
this.Controls.Add(this.button1);
|
|||
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
|
this.Name = "Form1";
|
|||
|
|
this.Text = "Form1";
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
this.PerformLayout();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.Button button1;
|
|||
|
|
private System.Windows.Forms.Button button2;
|
|||
|
|
private System.Windows.Forms.Button button3;
|
|||
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|||
|
|
private System.Windows.Forms.TextBox textBox1;
|
|||
|
|
private System.Windows.Forms.TextBox textBox2;
|
|||
|
|
private System.Windows.Forms.TextBox textBox3;
|
|||
|
|
private System.Windows.Forms.TextBox textBox4;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|