132 lines
4.3 KiB
C#
132 lines
4.3 KiB
C#
namespace CarServiceView
|
|
{
|
|
partial class FormAddItemForRepairTest
|
|
{
|
|
/// <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.comboBoxRepairRequest = new System.Windows.Forms.ComboBox();
|
|
this.comboBoxItem = new System.Windows.Forms.ComboBox();
|
|
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(80, 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(44, 15);
|
|
this.label1.TabIndex = 8;
|
|
this.label1.Text = "Заявка";
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(110, 64);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(100, 23);
|
|
this.textBoxCount.TabIndex = 3;
|
|
//
|
|
// comboBoxRepairRequest
|
|
//
|
|
this.comboBoxRepairRequest.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBoxRepairRequest.FormattingEnabled = true;
|
|
this.comboBoxRepairRequest.Location = new System.Drawing.Point(110, 12);
|
|
this.comboBoxRepairRequest.Name = "comboBoxRepairRequest";
|
|
this.comboBoxRepairRequest.Size = new System.Drawing.Size(121, 23);
|
|
this.comboBoxRepairRequest.TabIndex = 10;
|
|
//
|
|
// comboBoxItem
|
|
//
|
|
this.comboBoxItem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBoxItem.FormattingEnabled = true;
|
|
this.comboBoxItem.Location = new System.Drawing.Point(110, 38);
|
|
this.comboBoxItem.Name = "comboBoxItem";
|
|
this.comboBoxItem.Size = new System.Drawing.Size(121, 23);
|
|
this.comboBoxItem.TabIndex = 10;
|
|
//
|
|
// FormAddItemForRepairTest
|
|
//
|
|
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.comboBoxItem);
|
|
this.Controls.Add(this.comboBoxRepairRequest);
|
|
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.Name = "FormAddItemForRepairTest";
|
|
this.Text = "FormAddItemForRepairTest";
|
|
this.Load += new System.EventHandler(this.FormAddItemForRepairTest_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonAdd;
|
|
private Label label3;
|
|
private Label label2;
|
|
private Label label1;
|
|
private TextBox textBoxCount;
|
|
private ComboBox comboBoxRepairRequest;
|
|
private ComboBox comboBoxItem;
|
|
}
|
|
} |