141 lines
4.6 KiB
C#
141 lines
4.6 KiB
C#
namespace SewingDressesView
|
|
{
|
|
partial class SupplyForm
|
|
{
|
|
/// <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()
|
|
{
|
|
ShopComboBox = new ComboBox();
|
|
DressComboBox = new ComboBox();
|
|
CountTextBox = new TextBox();
|
|
SaveButton = new Button();
|
|
Cancel = new Button();
|
|
label1 = new Label();
|
|
label2 = new Label();
|
|
label3 = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// ShopComboBox
|
|
//
|
|
ShopComboBox.FormattingEnabled = true;
|
|
ShopComboBox.Location = new Point(155, 34);
|
|
ShopComboBox.Name = "ShopComboBox";
|
|
ShopComboBox.Size = new Size(318, 28);
|
|
ShopComboBox.TabIndex = 0;
|
|
//
|
|
// DressComboBox
|
|
//
|
|
DressComboBox.FormattingEnabled = true;
|
|
DressComboBox.Location = new Point(155, 79);
|
|
DressComboBox.Name = "DressComboBox";
|
|
DressComboBox.Size = new Size(318, 28);
|
|
DressComboBox.TabIndex = 1;
|
|
//
|
|
// CountTextBox
|
|
//
|
|
CountTextBox.Location = new Point(155, 128);
|
|
CountTextBox.Name = "CountTextBox";
|
|
CountTextBox.Size = new Size(318, 27);
|
|
CountTextBox.TabIndex = 2;
|
|
//
|
|
// SaveButton
|
|
//
|
|
SaveButton.Location = new Point(252, 200);
|
|
SaveButton.Name = "SaveButton";
|
|
SaveButton.Size = new Size(107, 36);
|
|
SaveButton.TabIndex = 3;
|
|
SaveButton.Text = "Сохранить";
|
|
SaveButton.UseVisualStyleBackColor = true;
|
|
SaveButton.Click += SaveButton_Click;
|
|
//
|
|
// Cancel
|
|
//
|
|
Cancel.Location = new Point(365, 200);
|
|
Cancel.Name = "Cancel";
|
|
Cancel.Size = new Size(108, 36);
|
|
Cancel.TabIndex = 4;
|
|
Cancel.Text = "Отмена";
|
|
Cancel.UseVisualStyleBackColor = true;
|
|
Cancel.Click += CancelButton_Click;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(40, 37);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(69, 20);
|
|
label1.TabIndex = 5;
|
|
label1.Text = "Магазин";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(40, 82);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(58, 20);
|
|
label2.TabIndex = 6;
|
|
label2.Text = "Платье";
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(40, 131);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(90, 20);
|
|
label3.TabIndex = 7;
|
|
label3.Text = "Количество";
|
|
//
|
|
// SupplyForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(506, 260);
|
|
Controls.Add(label3);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Controls.Add(Cancel);
|
|
Controls.Add(SaveButton);
|
|
Controls.Add(CountTextBox);
|
|
Controls.Add(DressComboBox);
|
|
Controls.Add(ShopComboBox);
|
|
Name = "SupplyForm";
|
|
Text = "Форма поставки";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox ShopComboBox;
|
|
private ComboBox DressComboBox;
|
|
private TextBox CountTextBox;
|
|
private Button SaveButton;
|
|
private Button Cancel;
|
|
private Label label1;
|
|
private Label label2;
|
|
private Label label3;
|
|
}
|
|
} |