124 lines
4.3 KiB
C#
124 lines
4.3 KiB
C#
namespace GiftShopView
|
|
{
|
|
partial class FormSell
|
|
{
|
|
/// <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()
|
|
{
|
|
GiftComboBox = new ComboBox();
|
|
GiftLabel = new Label();
|
|
CountLabel = new Label();
|
|
CountTextBox = new TextBox();
|
|
SaveButton = new Button();
|
|
CancelButton = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// GiftComboBox
|
|
//
|
|
GiftComboBox.FormattingEnabled = true;
|
|
GiftComboBox.Location = new Point(149, 30);
|
|
GiftComboBox.Margin = new Padding(4, 5, 4, 5);
|
|
GiftComboBox.Name = "GiftComboBox";
|
|
GiftComboBox.Size = new Size(241, 33);
|
|
GiftComboBox.TabIndex = 0;
|
|
//
|
|
// GiftLabel
|
|
//
|
|
GiftLabel.AutoSize = true;
|
|
GiftLabel.Location = new Point(51, 33);
|
|
GiftLabel.Margin = new Padding(4, 0, 4, 0);
|
|
GiftLabel.Name = "GiftLabel";
|
|
GiftLabel.Size = new Size(90, 25);
|
|
GiftLabel.TabIndex = 1;
|
|
GiftLabel.Text = "Подарок:";
|
|
//
|
|
// CountLabel
|
|
//
|
|
CountLabel.AutoSize = true;
|
|
CountLabel.Location = new Point(30, 82);
|
|
CountLabel.Margin = new Padding(4, 0, 4, 0);
|
|
CountLabel.Name = "CountLabel";
|
|
CountLabel.Size = new Size(111, 25);
|
|
CountLabel.TabIndex = 2;
|
|
CountLabel.Text = "Количество:";
|
|
//
|
|
// CountTextBox
|
|
//
|
|
CountTextBox.Location = new Point(149, 79);
|
|
CountTextBox.Margin = new Padding(4, 5, 4, 5);
|
|
CountTextBox.Name = "CountTextBox";
|
|
CountTextBox.Size = new Size(241, 31);
|
|
CountTextBox.TabIndex = 3;
|
|
//
|
|
// SaveButton
|
|
//
|
|
SaveButton.Location = new Point(51, 157);
|
|
SaveButton.Margin = new Padding(4, 5, 4, 5);
|
|
SaveButton.Name = "SaveButton";
|
|
SaveButton.Size = new Size(152, 50);
|
|
SaveButton.TabIndex = 4;
|
|
SaveButton.Text = "Сохранить";
|
|
SaveButton.UseVisualStyleBackColor = true;
|
|
SaveButton.Click += SaveButton_Click;
|
|
//
|
|
// CancelButton
|
|
//
|
|
CancelButton.Location = new Point(250, 157);
|
|
CancelButton.Margin = new Padding(4, 5, 4, 5);
|
|
CancelButton.Name = "CancelButton";
|
|
CancelButton.Size = new Size(152, 50);
|
|
CancelButton.TabIndex = 5;
|
|
CancelButton.Text = "Отмена";
|
|
CancelButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// SellForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(10F, 25F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(415, 221);
|
|
Controls.Add(CancelButton);
|
|
Controls.Add(SaveButton);
|
|
Controls.Add(CountTextBox);
|
|
Controls.Add(CountLabel);
|
|
Controls.Add(GiftLabel);
|
|
Controls.Add(GiftComboBox);
|
|
Margin = new Padding(4, 5, 4, 5);
|
|
Name = "SellForm";
|
|
Text = "Форма продажи";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox GiftComboBox;
|
|
private Label GiftLabel;
|
|
private Label CountLabel;
|
|
private TextBox CountTextBox;
|
|
private Button SaveButton;
|
|
private Button CancelButton;
|
|
}
|
|
} |