142 lines
4.8 KiB
C#
Raw Normal View History

2024-04-12 19:35:46 +04:00
namespace ComputersShopView
{
partial class FormCreateSupply
{
/// <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()
{
label1 = new Label();
label2 = new Label();
comboBoxShop = new ComboBox();
comboBoxComputer = new ComboBox();
buttonSave = new Button();
buttonCancel = new Button();
label3 = new Label();
textBoxCount = new TextBox();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(37, 67);
label1.Name = "label1";
label1.Size = new Size(58, 15);
label1.TabIndex = 0;
label1.Text = "Поставка";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(37, 25);
label2.Name = "label2";
label2.Size = new Size(54, 15);
label2.TabIndex = 1;
label2.Text = "Магазин";
//
// comboBoxShop
//
comboBoxShop.FormattingEnabled = true;
comboBoxShop.Location = new Point(131, 22);
comboBoxShop.Name = "comboBoxShop";
comboBoxShop.Size = new Size(174, 23);
comboBoxShop.TabIndex = 2;
//
// comboBoxComputer
//
comboBoxComputer.FormattingEnabled = true;
comboBoxComputer.Location = new Point(131, 64);
comboBoxComputer.Name = "comboBoxComputer";
comboBoxComputer.Size = new Size(174, 23);
comboBoxComputer.TabIndex = 3;
//
// buttonSave
//
buttonSave.Location = new Point(88, 144);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(89, 23);
buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(201, 144);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(89, 23);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(37, 107);
label3.Name = "label3";
label3.Size = new Size(72, 15);
label3.TabIndex = 6;
label3.Text = "Количество";
//
// textBoxCount
//
textBoxCount.Location = new Point(131, 104);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(174, 23);
textBoxCount.TabIndex = 7;
//
// FormCreateSupply
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(317, 174);
Controls.Add(textBoxCount);
Controls.Add(label3);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(comboBoxComputer);
Controls.Add(comboBoxShop);
Controls.Add(label2);
Controls.Add(label1);
Name = "FormCreateSupply";
Text = "FormCreateSupply";
Load += FormCreateSupply_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private ComboBox comboBoxShop;
private ComboBox comboBoxComputer;
private Button buttonSave;
private Button buttonCancel;
private Label label3;
private TextBox textBoxCount;
}
}