152 lines
5.7 KiB
C#
152 lines
5.7 KiB
C#
namespace GiftShopView
|
|
{
|
|
partial class FormShopReplenishment
|
|
{
|
|
/// <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()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Text = "FormShopReplenishment";
|
|
|
|
shopNameLabel = new Label();
|
|
packageNameLabel = new Label();
|
|
countLabel = new Label();
|
|
shopNameComboBox = new ComboBox();
|
|
giftNameComboBox = new ComboBox();
|
|
countTextBox = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// shopNameLabel
|
|
//
|
|
shopNameLabel.AutoSize = true;
|
|
shopNameLabel.Location = new Point(14, 12);
|
|
shopNameLabel.Name = "shopNameLabel";
|
|
shopNameLabel.Size = new Size(154, 20);
|
|
shopNameLabel.TabIndex = 0;
|
|
shopNameLabel.Text = "Название магазина: ";
|
|
//
|
|
// packageNameLabel
|
|
//
|
|
packageNameLabel.AutoSize = true;
|
|
packageNameLabel.Location = new Point(14, 49);
|
|
packageNameLabel.Name = "packageNameLabel";
|
|
packageNameLabel.Size = new Size(145, 20);
|
|
packageNameLabel.TabIndex = 1;
|
|
packageNameLabel.Text = "Название изделия: ";
|
|
//
|
|
// countLabel
|
|
//
|
|
countLabel.AutoSize = true;
|
|
countLabel.Location = new Point(14, 88);
|
|
countLabel.Name = "countLabel";
|
|
countLabel.Size = new Size(97, 20);
|
|
countLabel.TabIndex = 2;
|
|
countLabel.Text = "Количество: ";
|
|
//
|
|
// shopNameComboBox
|
|
//
|
|
shopNameComboBox.FormattingEnabled = true;
|
|
shopNameComboBox.Location = new Point(171, 9);
|
|
shopNameComboBox.Margin = new Padding(3, 4, 3, 4);
|
|
shopNameComboBox.Name = "shopNameComboBox";
|
|
shopNameComboBox.Size = new Size(170, 28);
|
|
shopNameComboBox.TabIndex = 3;
|
|
//
|
|
// giftNameComboBox
|
|
//
|
|
giftNameComboBox.FormattingEnabled = true;
|
|
giftNameComboBox.Location = new Point(171, 49);
|
|
giftNameComboBox.Margin = new Padding(3, 4, 3, 4);
|
|
giftNameComboBox.Name = "giftNameComboBox";
|
|
giftNameComboBox.Size = new Size(170, 28);
|
|
giftNameComboBox.TabIndex = 4;
|
|
//
|
|
// countTextBox
|
|
//
|
|
countTextBox.Location = new Point(171, 87);
|
|
countTextBox.Margin = new Padding(3, 4, 3, 4);
|
|
countTextBox.Name = "countTextBox";
|
|
countTextBox.Size = new Size(170, 27);
|
|
countTextBox.TabIndex = 5;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(151, 144);
|
|
buttonSave.Margin = new Padding(3, 4, 3, 4);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(98, 31);
|
|
buttonSave.TabIndex = 6;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += SaveButton_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(255, 144);
|
|
buttonCancel.Margin = new Padding(3, 4, 3, 4);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(86, 31);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormShopReplenishment
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(353, 200);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(countTextBox);
|
|
Controls.Add(giftNameComboBox);
|
|
Controls.Add(shopNameComboBox);
|
|
Controls.Add(countLabel);
|
|
Controls.Add(packageNameLabel);
|
|
Controls.Add(shopNameLabel);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "FormShopReplenishment";
|
|
Text = "Пополнение магазина";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label shopNameLabel;
|
|
private Label packageNameLabel;
|
|
private Label countLabel;
|
|
private ComboBox shopNameComboBox;
|
|
private ComboBox giftNameComboBox;
|
|
private TextBox countTextBox;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |