150 lines
5.4 KiB
C#

namespace CarRepairShop
{
partial class FormSupply
{
/// <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()
{
comboBoxShop = new ComboBox();
comboBoxRepair = new ComboBox();
textBoxCount = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
labelShop = new Label();
labelRepair = new Label();
labelCount = new Label();
SuspendLayout();
//
// comboBoxShop
//
comboBoxShop.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxShop.FormattingEnabled = true;
comboBoxShop.Location = new Point(110, 16);
comboBoxShop.Margin = new Padding(3, 4, 3, 4);
comboBoxShop.Name = "comboBoxShop";
comboBoxShop.Size = new Size(282, 28);
comboBoxShop.TabIndex = 0;
//
// comboBoxRepair
//
comboBoxRepair.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxRepair.FormattingEnabled = true;
comboBoxRepair.Location = new Point(110, 55);
comboBoxRepair.Margin = new Padding(3, 4, 3, 4);
comboBoxRepair.Name = "comboBoxRepair";
comboBoxRepair.Size = new Size(282, 28);
comboBoxRepair.TabIndex = 1;
//
// textBoxCount
//
textBoxCount.Location = new Point(110, 93);
textBoxCount.Margin = new Padding(3, 4, 3, 4);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(282, 27);
textBoxCount.TabIndex = 2;
//
// buttonSave
//
buttonSave.Location = new Point(204, 132);
buttonSave.Margin = new Padding(3, 4, 3, 4);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(96, 31);
buttonSave.TabIndex = 3;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += SaveButton_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(306, 132);
buttonCancel.Margin = new Padding(3, 4, 3, 4);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(86, 31);
buttonCancel.TabIndex = 4;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += CancelButton_Click;
//
// labelShop
//
labelShop.AutoSize = true;
labelShop.Location = new Point(12, 16);
labelShop.Name = "labelShop";
labelShop.Size = new Size(72, 20);
labelShop.TabIndex = 5;
labelShop.Text = "Магазин:";
//
// labelRepair
//
labelRepair.AutoSize = true;
labelRepair.Location = new Point(12, 55);
labelRepair.Name = "labelRepair";
labelRepair.Size = new Size(63, 20);
labelRepair.TabIndex = 6;
labelRepair.Text = "Ремонт:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 93);
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.TabIndex = 7;
labelCount.Text = "Количество:";
//
// FormSupply
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(406, 181);
Controls.Add(labelCount);
Controls.Add(labelRepair);
Controls.Add(labelShop);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxCount);
Controls.Add(comboBoxRepair);
Controls.Add(comboBoxShop);
Margin = new Padding(3, 4, 3, 4);
Name = "FormSupply";
StartPosition = FormStartPosition.CenterScreen;
Text = "Поставки";
ResumeLayout(false);
PerformLayout();
}
#endregion
private ComboBox comboBoxShop;
private ComboBox comboBoxRepair;
private TextBox textBoxCount;
private Button buttonSave;
private Button buttonCancel;
private Label labelShop;
private Label labelRepair;
private Label labelCount;
}
}