PIbd-23-Nasyrov-A.G.-Flower.../ProjectFlowerShop/SellForm.Designer.cs
2024-03-14 21:28:58 +04:00

118 lines
4.0 KiB
C#

namespace ProjectFlowerShop
{
partial class SellForm
{
/// <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()
{
labelFlower = new Label();
labelCount = new Label();
comboBoxFlower = new ComboBox();
textBoxCount = new TextBox();
buttonCancel = new Button();
buttonSave = new Button();
SuspendLayout();
//
// labelFlower
//
labelFlower.AutoSize = true;
labelFlower.Location = new Point(12, 9);
labelFlower.Name = "labelFlower";
labelFlower.Size = new Size(53, 20);
labelFlower.TabIndex = 0;
labelFlower.Text = "Цветы";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 87);
labelCount.Name = "labelCount";
labelCount.Size = new Size(90, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Количество";
//
// comboBoxFlower
//
comboBoxFlower.FormattingEnabled = true;
comboBoxFlower.Location = new Point(12, 32);
comboBoxFlower.Name = "comboBoxFlower";
comboBoxFlower.Size = new Size(151, 28);
comboBoxFlower.TabIndex = 2;
//
// textBoxCount
//
textBoxCount.Location = new Point(12, 110);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(151, 27);
textBoxCount.TabIndex = 3;
//
// buttonCancel
//
buttonCancel.Location = new Point(277, 153);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(94, 29);
buttonCancel.TabIndex = 4;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(180, 153);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 29);
buttonSave.TabIndex = 5;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// SellForm
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(383, 198);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(textBoxCount);
Controls.Add(comboBoxFlower);
Controls.Add(labelCount);
Controls.Add(labelFlower);
Name = "SellForm";
Text = "Продажи";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelFlower;
private Label labelCount;
private ComboBox comboBoxFlower;
private TextBox textBoxCount;
private Button buttonCancel;
private Button buttonSave;
}
}