127 lines
3.9 KiB
C#
127 lines
3.9 KiB
C#
|
namespace CarServiceView
|
|||
|
{
|
|||
|
partial class FormAddItemTest
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.buttonAdd = new System.Windows.Forms.Button();
|
|||
|
this.label3 = new System.Windows.Forms.Label();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|||
|
this.textBoxPrice = new System.Windows.Forms.TextBox();
|
|||
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
this.buttonAdd.Location = new System.Drawing.Point(36, 125);
|
|||
|
this.buttonAdd.Name = "buttonAdd";
|
|||
|
this.buttonAdd.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.buttonAdd.TabIndex = 9;
|
|||
|
this.buttonAdd.Text = "Добавить";
|
|||
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
|
|||
|
//
|
|||
|
// label3
|
|||
|
//
|
|||
|
this.label3.AutoSize = true;
|
|||
|
this.label3.Location = new System.Drawing.Point(12, 67);
|
|||
|
this.label3.Name = "label3";
|
|||
|
this.label3.Size = new System.Drawing.Size(72, 15);
|
|||
|
this.label3.TabIndex = 6;
|
|||
|
this.label3.Text = "Количество";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(12, 38);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(35, 15);
|
|||
|
this.label2.TabIndex = 7;
|
|||
|
this.label2.Text = "Цена";
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(90, 15);
|
|||
|
this.label1.TabIndex = 8;
|
|||
|
this.label1.Text = "Наименование";
|
|||
|
//
|
|||
|
// textBoxCount
|
|||
|
//
|
|||
|
this.textBoxCount.Location = new System.Drawing.Point(108, 64);
|
|||
|
this.textBoxCount.Name = "textBoxCount";
|
|||
|
this.textBoxCount.Size = new System.Drawing.Size(100, 23);
|
|||
|
this.textBoxCount.TabIndex = 3;
|
|||
|
//
|
|||
|
// textBoxPrice
|
|||
|
//
|
|||
|
this.textBoxPrice.Location = new System.Drawing.Point(108, 35);
|
|||
|
this.textBoxPrice.Name = "textBoxPrice";
|
|||
|
this.textBoxPrice.Size = new System.Drawing.Size(100, 23);
|
|||
|
this.textBoxPrice.TabIndex = 4;
|
|||
|
//
|
|||
|
// textBoxName
|
|||
|
//
|
|||
|
this.textBoxName.Location = new System.Drawing.Point(108, 6);
|
|||
|
this.textBoxName.Name = "textBoxName";
|
|||
|
this.textBoxName.Size = new System.Drawing.Size(100, 23);
|
|||
|
this.textBoxName.TabIndex = 5;
|
|||
|
//
|
|||
|
// FormAddItemTest
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|||
|
this.Controls.Add(this.buttonAdd);
|
|||
|
this.Controls.Add(this.label3);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.Controls.Add(this.textBoxCount);
|
|||
|
this.Controls.Add(this.textBoxPrice);
|
|||
|
this.Controls.Add(this.textBoxName);
|
|||
|
this.Name = "FormAddItemTest";
|
|||
|
this.Text = "FormAddItemTest";
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonAdd;
|
|||
|
private Label label3;
|
|||
|
private Label label2;
|
|||
|
private Label label1;
|
|||
|
private TextBox textBoxCount;
|
|||
|
private TextBox textBoxPrice;
|
|||
|
private TextBox textBoxName;
|
|||
|
}
|
|||
|
}
|