94 lines
3.4 KiB
C#
94 lines
3.4 KiB
C#
|
namespace WinFormsApp
|
|||
|
{
|
|||
|
partial class FormSupplyProduct
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
numericUpDownCount = new NumericUpDown();
|
|||
|
comboBoxProduct = new ComboBox();
|
|||
|
buttonSave = new Button();
|
|||
|
buttonCancel = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownCount).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// numericUpDownCount
|
|||
|
//
|
|||
|
numericUpDownCount.Location = new Point(26, 76);
|
|||
|
numericUpDownCount.Name = "numericUpDownCount";
|
|||
|
numericUpDownCount.Size = new Size(120, 23);
|
|||
|
numericUpDownCount.TabIndex = 1;
|
|||
|
//
|
|||
|
// comboBoxProduct
|
|||
|
//
|
|||
|
comboBoxProduct.FormattingEnabled = true;
|
|||
|
comboBoxProduct.Location = new Point(25, 33);
|
|||
|
comboBoxProduct.Name = "comboBoxProduct";
|
|||
|
comboBoxProduct.Size = new Size(121, 23);
|
|||
|
comboBoxProduct.TabIndex = 2;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(192, 74);
|
|||
|
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(192, 98);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(75, 23);
|
|||
|
buttonCancel.TabIndex = 4;
|
|||
|
buttonCancel.Text = "Отмена";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += ButtonCancel_Click;
|
|||
|
//
|
|||
|
// FormSupplyProduct
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(287, 138);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(comboBoxProduct);
|
|||
|
Controls.Add(numericUpDownCount);
|
|||
|
Name = "FormSupplyProduct";
|
|||
|
Text = "FormSupplyProduct";
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownCount).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
private NumericUpDown numericUpDownCount;
|
|||
|
private ComboBox comboBoxProduct;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|