PIAPS_CW/WinFormsApp/FormSupplierProduct.Designer.cs

126 lines
4.6 KiB
C#
Raw Normal View History

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