PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopView/FormSellComputers.Designer.cs

124 lines
4.6 KiB
C#

namespace ComputersShopView
{
partial class FormSellComputers
{
/// <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();
comboBoxDocuments = new ComboBox();
numericUpDownCount = new NumericUpDown();
labelDocument = new Label();
labelCount = new Label();
ButtonSave = new Button();
((System.ComponentModel.ISupportInitialize)numericUpDownCount).BeginInit();
SuspendLayout();
//
// ButtonCancel
//
ButtonCancel.Location = new Point(233, 60);
ButtonCancel.Margin = new Padding(3, 2, 3, 2);
ButtonCancel.Name = "ButtonCancel";
ButtonCancel.Size = new Size(82, 22);
ButtonCancel.TabIndex = 1;
ButtonCancel.Text = "Отмена";
ButtonCancel.UseVisualStyleBackColor = true;
ButtonCancel.Click += ButtonCancel_Click;
//
// comboBoxDocuments
//
comboBoxDocuments.FormattingEnabled = true;
comboBoxDocuments.Location = new Point(89, 6);
comboBoxDocuments.Margin = new Padding(3, 2, 3, 2);
comboBoxDocuments.Name = "comboBoxDocuments";
comboBoxDocuments.Size = new Size(226, 23);
comboBoxDocuments.TabIndex = 2;
//
// numericUpDownCount
//
numericUpDownCount.Location = new Point(90, 33);
numericUpDownCount.Margin = new Padding(3, 2, 3, 2);
numericUpDownCount.Name = "numericUpDownCount";
numericUpDownCount.Size = new Size(225, 23);
numericUpDownCount.TabIndex = 3;
//
// labelDocument
//
labelDocument.AutoSize = true;
labelDocument.Location = new Point(12, 9);
labelDocument.Name = "labelDocument";
labelDocument.Size = new Size(71, 15);
labelDocument.TabIndex = 4;
labelDocument.Text = "Компьютер";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(11, 35);
labelCount.Name = "labelCount";
labelCount.Size = new Size(72, 15);
labelCount.TabIndex = 5;
labelCount.Text = "Количество";
//
// ButtonSave
//
ButtonSave.Location = new Point(145, 60);
ButtonSave.Margin = new Padding(3, 2, 3, 2);
ButtonSave.Name = "ButtonSave";
ButtonSave.Size = new Size(82, 22);
ButtonSave.TabIndex = 6;
ButtonSave.Text = "Сохранить";
ButtonSave.UseVisualStyleBackColor = true;
ButtonSave.Click += ButtonSave_Click;
//
// FormSellComputers
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(326, 93);
Controls.Add(ButtonSave);
Controls.Add(labelCount);
Controls.Add(labelDocument);
Controls.Add(numericUpDownCount);
Controls.Add(comboBoxDocuments);
Controls.Add(ButtonCancel);
Margin = new Padding(3, 2, 3, 2);
Name = "FormSellComputers";
Text = "Продажа компьютеров";
((System.ComponentModel.ISupportInitialize)numericUpDownCount).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button ButtonCancel;
private ComboBox comboBoxDocuments;
private NumericUpDown numericUpDownCount;
private Label labelDocument;
private Label labelCount;
private Button ButtonSave;
}
}