122 lines
4.2 KiB
C#
122 lines
4.2 KiB
C#
|
namespace FoodOrdersView
|
|||
|
{
|
|||
|
partial class FormComponent
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
labelName = new Label();
|
|||
|
labelCost = new Label();
|
|||
|
textBoxName = new TextBox();
|
|||
|
textBoxCost = new TextBox();
|
|||
|
buttonSave = new Button();
|
|||
|
buttonCancel = new Button();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// labelName
|
|||
|
//
|
|||
|
labelName.AutoSize = true;
|
|||
|
labelName.Location = new Point(14, 10);
|
|||
|
labelName.Name = "labelName";
|
|||
|
labelName.Size = new Size(65, 15);
|
|||
|
labelName.TabIndex = 0;
|
|||
|
labelName.Text = "Название :";
|
|||
|
//
|
|||
|
// labelCost
|
|||
|
//
|
|||
|
labelCost.AutoSize = true;
|
|||
|
labelCost.Location = new Point(14, 39);
|
|||
|
labelCost.Name = "labelCost";
|
|||
|
labelCost.Size = new Size(41, 15);
|
|||
|
labelCost.TabIndex = 1;
|
|||
|
labelCost.Text = "Цена :";
|
|||
|
//
|
|||
|
// textBoxName
|
|||
|
//
|
|||
|
textBoxName.Location = new Point(91, 7);
|
|||
|
textBoxName.Margin = new Padding(4, 3, 4, 3);
|
|||
|
textBoxName.Name = "textBoxName";
|
|||
|
textBoxName.Size = new Size(252, 23);
|
|||
|
textBoxName.TabIndex = 2;
|
|||
|
//
|
|||
|
// textBoxCost
|
|||
|
//
|
|||
|
textBoxCost.Location = new Point(91, 36);
|
|||
|
textBoxCost.Margin = new Padding(4, 3, 4, 3);
|
|||
|
textBoxCost.Name = "textBoxCost";
|
|||
|
textBoxCost.Size = new Size(129, 23);
|
|||
|
textBoxCost.TabIndex = 4;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(162, 71);
|
|||
|
buttonSave.Margin = new Padding(4, 3, 4, 3);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(88, 27);
|
|||
|
buttonSave.TabIndex = 5;
|
|||
|
buttonSave.Text = "Сохранить";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += ButtonSave_Click;
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(260, 71);
|
|||
|
buttonCancel.Margin = new Padding(4, 3, 4, 3);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(88, 27);
|
|||
|
buttonCancel.TabIndex = 6;
|
|||
|
buttonCancel.Text = "Отмена";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += ButtonCancel_Click;
|
|||
|
//
|
|||
|
// FormComponent
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(364, 110);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(textBoxCost);
|
|||
|
Controls.Add(textBoxName);
|
|||
|
Controls.Add(labelCost);
|
|||
|
Controls.Add(labelName);
|
|||
|
Name = "FormComponent";
|
|||
|
StartPosition = FormStartPosition.CenterScreen;
|
|||
|
Text = "Компонент";
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label labelName;
|
|||
|
private Label labelCost;
|
|||
|
private TextBox textBoxName;
|
|||
|
private TextBox textBoxCost;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|