PIbd-22_Kamcharova_K.A_Reno.../RenovationWork/FormSupply.Designer.cs

141 lines
4.9 KiB
C#
Raw Normal View History

2024-06-22 16:29:49 +04:00
namespace RenovationWorkView
{
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()
{
labelShop = new Label();
labelRepair = new Label();
labelCount = new Label();
buttonSave = new Button();
buttonCancel = new Button();
textBoxCount = new TextBox();
comboBoxShop = new ComboBox();
comboBoxRepair = new ComboBox();
SuspendLayout();
//
// labelShop
//
labelShop.AutoSize = true;
labelShop.Location = new Point(12, 12);
labelShop.Name = "labelShop";
labelShop.Size = new Size(57, 15);
labelShop.TabIndex = 0;
labelShop.Text = "Магазин:";
//
// labelRepair
//
labelRepair.AutoSize = true;
labelRepair.Location = new Point(13, 41);
labelRepair.Name = "labelRepair";
labelRepair.Size = new Size(56, 15);
labelRepair.TabIndex = 1;
labelRepair.Text = "Изделие:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 67);
labelCount.Name = "labelCount";
labelCount.Size = new Size(75, 15);
labelCount.TabIndex = 2;
labelCount.Text = "Количество:";
//
// buttonSave
//
buttonSave.Location = new Point(189, 110);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 3;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(280, 110);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23);
buttonCancel.TabIndex = 4;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// textBoxCount
//
textBoxCount.Location = new Point(93, 70);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(126, 23);
textBoxCount.TabIndex = 5;
//
// comboBoxShop
//
comboBoxShop.FormattingEnabled = true;
comboBoxShop.Location = new Point(93, 12);
comboBoxShop.Name = "comboBoxShop";
comboBoxShop.Size = new Size(262, 23);
comboBoxShop.TabIndex = 6;
//
// comboBoxRepair
//
comboBoxRepair.FormattingEnabled = true;
comboBoxRepair.Location = new Point(93, 41);
comboBoxRepair.Name = "comboBoxRepair";
comboBoxRepair.Size = new Size(262, 23);
comboBoxRepair.TabIndex = 7;
//
// FormSupply
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(367, 144);
Controls.Add(comboBoxRepair);
Controls.Add(comboBoxShop);
Controls.Add(textBoxCount);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(labelCount);
Controls.Add(labelRepair);
Controls.Add(labelShop);
Name = "FormSupply";
Text = "Пополнение магазина";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelShop;
private Label labelRepair;
private Label labelCount;
private Button buttonSave;
private Button buttonCancel;
private TextBox textBoxCount;
private ComboBox comboBoxShop;
private ComboBox comboBoxRepair;
}
}