147 lines
5.0 KiB
C#
147 lines
5.0 KiB
C#
|
namespace MotorPlantView
|
|||
|
{
|
|||
|
partial class FormSupply
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
EngineComboBox = 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(136, 26);
|
|||
|
ShopComboBox.Margin = new Padding(3, 2, 3, 2);
|
|||
|
ShopComboBox.Name = "ShopComboBox";
|
|||
|
ShopComboBox.Size = new Size(279, 23);
|
|||
|
ShopComboBox.TabIndex = 0;
|
|||
|
//
|
|||
|
// EngineComboBox
|
|||
|
//
|
|||
|
EngineComboBox.FormattingEnabled = true;
|
|||
|
EngineComboBox.Location = new Point(136, 59);
|
|||
|
EngineComboBox.Margin = new Padding(3, 2, 3, 2);
|
|||
|
EngineComboBox.Name = "EngineComboBox";
|
|||
|
EngineComboBox.Size = new Size(279, 23);
|
|||
|
EngineComboBox.TabIndex = 1;
|
|||
|
//
|
|||
|
// CountTextBox
|
|||
|
//
|
|||
|
CountTextBox.Location = new Point(136, 96);
|
|||
|
CountTextBox.Margin = new Padding(3, 2, 3, 2);
|
|||
|
CountTextBox.Name = "CountTextBox";
|
|||
|
CountTextBox.Size = new Size(279, 23);
|
|||
|
CountTextBox.TabIndex = 2;
|
|||
|
//
|
|||
|
// SaveButton
|
|||
|
//
|
|||
|
SaveButton.Location = new Point(220, 150);
|
|||
|
SaveButton.Margin = new Padding(3, 2, 3, 2);
|
|||
|
SaveButton.Name = "SaveButton";
|
|||
|
SaveButton.Size = new Size(94, 27);
|
|||
|
SaveButton.TabIndex = 3;
|
|||
|
SaveButton.Text = "Сохранить";
|
|||
|
SaveButton.UseVisualStyleBackColor = true;
|
|||
|
SaveButton.Click += SaveButton_Click;
|
|||
|
//
|
|||
|
// Cancel
|
|||
|
//
|
|||
|
Cancel.Location = new Point(319, 150);
|
|||
|
Cancel.Margin = new Padding(3, 2, 3, 2);
|
|||
|
Cancel.Name = "Cancel";
|
|||
|
Cancel.Size = new Size(94, 27);
|
|||
|
Cancel.TabIndex = 4;
|
|||
|
Cancel.Text = "Отмена";
|
|||
|
Cancel.UseVisualStyleBackColor = true;
|
|||
|
Cancel.Click += CancelButton_Click;
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
label1.AutoSize = true;
|
|||
|
label1.Location = new Point(35, 28);
|
|||
|
label1.Name = "label1";
|
|||
|
label1.Size = new Size(54, 15);
|
|||
|
label1.TabIndex = 5;
|
|||
|
label1.Text = "Магазин";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
label2.AutoSize = true;
|
|||
|
label2.Location = new Point(35, 62);
|
|||
|
label2.Name = "label2";
|
|||
|
label2.Size = new Size(64, 15);
|
|||
|
label2.TabIndex = 6;
|
|||
|
label2.Text = "Двигатели";
|
|||
|
//
|
|||
|
// label3
|
|||
|
//
|
|||
|
label3.AutoSize = true;
|
|||
|
label3.Location = new Point(35, 98);
|
|||
|
label3.Name = "label3";
|
|||
|
label3.Size = new Size(72, 15);
|
|||
|
label3.TabIndex = 7;
|
|||
|
label3.Text = "Количество";
|
|||
|
//
|
|||
|
// FormSupply
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(443, 195);
|
|||
|
Controls.Add(label3);
|
|||
|
Controls.Add(label2);
|
|||
|
Controls.Add(label1);
|
|||
|
Controls.Add(Cancel);
|
|||
|
Controls.Add(SaveButton);
|
|||
|
Controls.Add(CountTextBox);
|
|||
|
Controls.Add(EngineComboBox);
|
|||
|
Controls.Add(ShopComboBox);
|
|||
|
Margin = new Padding(3, 2, 3, 2);
|
|||
|
Name = "FormSupply";
|
|||
|
Text = "Форма поставки";
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private ComboBox ShopComboBox;
|
|||
|
private ComboBox EngineComboBox;
|
|||
|
private TextBox CountTextBox;
|
|||
|
private Button SaveButton;
|
|||
|
private Button Cancel;
|
|||
|
private Label label1;
|
|||
|
private Label label2;
|
|||
|
private Label label3;
|
|||
|
}
|
|||
|
}
|