127 lines
4.2 KiB
C#
127 lines
4.2 KiB
C#
namespace SushiBarView.Forms
|
|
{
|
|
partial class FormPromotion
|
|
{
|
|
/// <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()
|
|
{
|
|
label1 = new Label();
|
|
NameTextBox = new TextBox();
|
|
label2 = new Label();
|
|
button1 = new Button();
|
|
DiscountTextBox = new TextBox();
|
|
TriggeringSumTextBox = new TextBox();
|
|
label3 = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(12, 15);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(59, 15);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "Название";
|
|
//
|
|
// NameTextBox
|
|
//
|
|
NameTextBox.Location = new Point(187, 12);
|
|
NameTextBox.Name = "NameTextBox";
|
|
NameTextBox.Size = new Size(200, 23);
|
|
NameTextBox.TabIndex = 1;
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(12, 44);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(88, 15);
|
|
label2.TabIndex = 2;
|
|
label2.Text = "Размер скидки";
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new Point(298, 108);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(89, 28);
|
|
button1.TabIndex = 4;
|
|
button1.Text = "Сохранить";
|
|
button1.UseVisualStyleBackColor = true;
|
|
button1.Click += ButtonSave_Click;
|
|
//
|
|
// DiscountTextBox
|
|
//
|
|
DiscountTextBox.Location = new Point(187, 41);
|
|
DiscountTextBox.Name = "DiscountTextBox";
|
|
DiscountTextBox.Size = new Size(200, 23);
|
|
DiscountTextBox.TabIndex = 5;
|
|
//
|
|
// TriggeringSumTextBox
|
|
//
|
|
TriggeringSumTextBox.Location = new Point(187, 70);
|
|
TriggeringSumTextBox.Name = "TriggeringSumTextBox";
|
|
TriggeringSumTextBox.Size = new Size(200, 23);
|
|
TriggeringSumTextBox.TabIndex = 6;
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(12, 73);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(169, 15);
|
|
label3.TabIndex = 7;
|
|
label3.Text = "Минимальная сумма заказов";
|
|
//
|
|
// FormPromotion
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(397, 145);
|
|
Controls.Add(label3);
|
|
Controls.Add(TriggeringSumTextBox);
|
|
Controls.Add(DiscountTextBox);
|
|
Controls.Add(button1);
|
|
Controls.Add(label2);
|
|
Controls.Add(NameTextBox);
|
|
Controls.Add(label1);
|
|
Name = "FormPromotion";
|
|
Text = "Акция";
|
|
Load += FormPromotion_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private TextBox NameTextBox;
|
|
private Label label2;
|
|
private Button button1;
|
|
private TextBox DiscountTextBox;
|
|
private TextBox TriggeringSumTextBox;
|
|
private Label label3;
|
|
}
|
|
} |