PIAPS_CW/WinFormsApp/FormSupplierProduct.Designer.cs
2024-06-25 23:10:00 +04:00

126 lines
4.6 KiB
C#

namespace WinFormsApp
{
partial class FormSupplierProduct
{
/// <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()
{
buttonCancel = new Button();
buttonSave = new Button();
comboBoxProduct = new ComboBox();
numericUpDownCount = new NumericUpDown();
label2 = new Label();
label1 = new Label();
((System.ComponentModel.ISupportInitialize)numericUpDownCount).BeginInit();
SuspendLayout();
//
// buttonCancel
//
buttonCancel.BackColor = Color.FromArgb(255, 192, 192);
buttonCancel.Location = new Point(167, 106);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23);
buttonCancel.TabIndex = 8;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = false;
buttonCancel.Click += ButtonCancel_Click;
//
// buttonSave
//
buttonSave.BackColor = Color.FromArgb(192, 255, 192);
buttonSave.Location = new Point(86, 106);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 7;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = false;
buttonSave.Click += ButtonSave_Click;
//
// comboBoxProduct
//
comboBoxProduct.FormattingEnabled = true;
comboBoxProduct.Location = new Point(86, 24);
comboBoxProduct.Name = "comboBoxProduct";
comboBoxProduct.Size = new Size(156, 23);
comboBoxProduct.TabIndex = 6;
//
// numericUpDownCount
//
numericUpDownCount.Location = new Point(87, 71);
numericUpDownCount.Maximum = new decimal(new int[] { 100000, 0, 0, 0 });
numericUpDownCount.Name = "numericUpDownCount";
numericUpDownCount.Size = new Size(155, 23);
numericUpDownCount.TabIndex = 5;
//
// label2
//
label2.AutoSize = true;
label2.Font = new Font("Segoe UI", 12F, FontStyle.Bold);
label2.Location = new Point(12, 68);
label2.Name = "label2";
label2.Size = new Size(69, 21);
label2.TabIndex = 10;
label2.Text = "Кол-во:";
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI", 12F, FontStyle.Bold);
label1.Location = new Point(12, 24);
label1.Name = "label1";
label1.Size = new Size(60, 21);
label1.TabIndex = 9;
label1.Text = "Товар:";
//
// FormSupplierProduct
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.AliceBlue;
ClientSize = new Size(255, 141);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(comboBoxProduct);
Controls.Add(numericUpDownCount);
Name = "FormSupplierProduct";
Text = "+ Товар поставщика";
((System.ComponentModel.ISupportInitialize)numericUpDownCount).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonCancel;
private Button buttonSave;
private ComboBox comboBoxProduct;
private NumericUpDown numericUpDownCount;
private Label label2;
private Label label1;
}
}