PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopView/FormCreateOrder.designer.cs
2024-03-23 14:18:27 +04:00

155 lines
7.0 KiB
C#

namespace CarRepairShopView
{
partial class FormCreateOrder
{
/// <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.labelCount = new System.Windows.Forms.Label();
this.comboBoxRepair = new System.Windows.Forms.ComboBox();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.textBoxCount = new System.Windows.Forms.TextBox();
this.labelRepair = new System.Windows.Forms.Label();
this.labelSum = new System.Windows.Forms.Label();
this.textBoxSum = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// labelCount
//
this.labelCount.AutoSize = true;
this.labelCount.Location = new System.Drawing.Point(14, 42);
this.labelCount.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.labelCount.Name = "labelCount";
this.labelCount.Size = new System.Drawing.Size(75, 15);
this.labelCount.TabIndex = 2;
this.labelCount.Text = "Количество:";
//
// comboBoxRepair
//
this.comboBoxRepair.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxRepair.FormattingEnabled = true;
this.comboBoxRepair.Location = new System.Drawing.Point(102, 7);
this.comboBoxRepair.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.comboBoxRepair.Name = "comboBoxRepair";
this.comboBoxRepair.Size = new System.Drawing.Size(252, 23);
this.comboBoxRepair.TabIndex = 1;
this.comboBoxRepair.SelectedIndexChanged += new System.EventHandler(this.ComboBoxRepair_SelectedIndexChanged);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(255, 98);
this.buttonCancel.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(88, 27);
this.buttonCancel.TabIndex = 7;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(161, 98);
this.buttonSave.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(88, 27);
this.buttonSave.TabIndex = 6;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
// textBoxCount
//
this.textBoxCount.Location = new System.Drawing.Point(102, 38);
this.textBoxCount.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.textBoxCount.Name = "textBoxCount";
this.textBoxCount.Size = new System.Drawing.Size(252, 23);
this.textBoxCount.TabIndex = 3;
this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged);
//
// labelRepair
//
this.labelRepair.AutoSize = true;
this.labelRepair.Location = new System.Drawing.Point(14, 10);
this.labelRepair.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.labelRepair.Name = "labelRepair";
this.labelRepair.Size = new System.Drawing.Size(51, 15);
this.labelRepair.TabIndex = 0;
this.labelRepair.Text = "Ремонт:";
//
// labelSum
//
this.labelSum.AutoSize = true;
this.labelSum.Location = new System.Drawing.Point(14, 72);
this.labelSum.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.labelSum.Name = "labelSum";
this.labelSum.Size = new System.Drawing.Size(48, 15);
this.labelSum.TabIndex = 4;
this.labelSum.Text = "Сумма:";
//
// textBoxSum
//
this.textBoxSum.Location = new System.Drawing.Point(102, 68);
this.textBoxSum.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.textBoxSum.Name = "textBoxSum";
this.textBoxSum.ReadOnly = true;
this.textBoxSum.Size = new System.Drawing.Size(252, 23);
this.textBoxSum.TabIndex = 5;
//
// FormCreateOrder
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(371, 136);
this.Controls.Add(this.labelSum);
this.Controls.Add(this.textBoxSum);
this.Controls.Add(this.labelCount);
this.Controls.Add(this.comboBoxRepair);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.textBoxCount);
this.Controls.Add(this.labelRepair);
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.Name = "FormCreateOrder";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Заказ";
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelCount;
private System.Windows.Forms.ComboBox comboBoxRepair;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Button buttonSave;
private System.Windows.Forms.TextBox textBoxCount;
private System.Windows.Forms.Label labelRepair;
private System.Windows.Forms.Label labelSum;
private System.Windows.Forms.TextBox textBoxSum;
}
}