198 lines
8.5 KiB
C#
198 lines
8.5 KiB
C#
|
namespace SushiBarView
|
|||
|
{
|
|||
|
partial class FormSushi
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.textBoxPrice = new System.Windows.Forms.TextBox();
|
|||
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|||
|
this.labelCost = new System.Windows.Forms.Label();
|
|||
|
this.labelName = new System.Windows.Forms.Label();
|
|||
|
this.panel1 = new System.Windows.Forms.Panel();
|
|||
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|||
|
this.ButtonRef = new System.Windows.Forms.Button();
|
|||
|
this.ButtonAdd = new System.Windows.Forms.Button();
|
|||
|
this.ButtonDel = new System.Windows.Forms.Button();
|
|||
|
this.ButtonUpd = new System.Windows.Forms.Button();
|
|||
|
this.ButtonCancel = new System.Windows.Forms.Button();
|
|||
|
this.ButtonSave = new System.Windows.Forms.Button();
|
|||
|
this.panel1.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// textBoxPrice
|
|||
|
//
|
|||
|
this.textBoxPrice.Location = new System.Drawing.Point(84, 48);
|
|||
|
this.textBoxPrice.Name = "textBoxPrice";
|
|||
|
this.textBoxPrice.Size = new System.Drawing.Size(262, 23);
|
|||
|
this.textBoxPrice.TabIndex = 9;
|
|||
|
//
|
|||
|
// textBoxName
|
|||
|
//
|
|||
|
this.textBoxName.Location = new System.Drawing.Point(84, 12);
|
|||
|
this.textBoxName.Name = "textBoxName";
|
|||
|
this.textBoxName.Size = new System.Drawing.Size(262, 23);
|
|||
|
this.textBoxName.TabIndex = 8;
|
|||
|
//
|
|||
|
// labelCost
|
|||
|
//
|
|||
|
this.labelCost.AutoSize = true;
|
|||
|
this.labelCost.Location = new System.Drawing.Point(13, 56);
|
|||
|
this.labelCost.Name = "labelCost";
|
|||
|
this.labelCost.Size = new System.Drawing.Size(35, 15);
|
|||
|
this.labelCost.TabIndex = 7;
|
|||
|
this.labelCost.Text = "Цена";
|
|||
|
//
|
|||
|
// labelName
|
|||
|
//
|
|||
|
this.labelName.AutoSize = true;
|
|||
|
this.labelName.Location = new System.Drawing.Point(13, 15);
|
|||
|
this.labelName.Name = "labelName";
|
|||
|
this.labelName.Size = new System.Drawing.Size(59, 15);
|
|||
|
this.labelName.TabIndex = 6;
|
|||
|
this.labelName.Text = "Название";
|
|||
|
//
|
|||
|
// panel1
|
|||
|
//
|
|||
|
this.panel1.Controls.Add(this.dataGridView);
|
|||
|
this.panel1.Controls.Add(this.ButtonRef);
|
|||
|
this.panel1.Controls.Add(this.ButtonAdd);
|
|||
|
this.panel1.Controls.Add(this.ButtonDel);
|
|||
|
this.panel1.Controls.Add(this.ButtonUpd);
|
|||
|
this.panel1.Location = new System.Drawing.Point(13, 100);
|
|||
|
this.panel1.Name = "panel1";
|
|||
|
this.panel1.Size = new System.Drawing.Size(725, 282);
|
|||
|
this.panel1.TabIndex = 10;
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
this.dataGridView.BackgroundColor = System.Drawing.Color.White;
|
|||
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
this.dataGridView.Location = new System.Drawing.Point(18, 13);
|
|||
|
this.dataGridView.Name = "dataGridView";
|
|||
|
this.dataGridView.RowTemplate.Height = 25;
|
|||
|
this.dataGridView.Size = new System.Drawing.Size(566, 255);
|
|||
|
this.dataGridView.TabIndex = 8;
|
|||
|
//
|
|||
|
// ButtonRef
|
|||
|
//
|
|||
|
this.ButtonRef.Location = new System.Drawing.Point(598, 198);
|
|||
|
this.ButtonRef.Name = "ButtonRef";
|
|||
|
this.ButtonRef.Size = new System.Drawing.Size(112, 35);
|
|||
|
this.ButtonRef.TabIndex = 7;
|
|||
|
this.ButtonRef.Text = "Обновить";
|
|||
|
this.ButtonRef.UseVisualStyleBackColor = true;
|
|||
|
this.ButtonRef.Click += new System.EventHandler(this.ButtonRef_Click);
|
|||
|
//
|
|||
|
// ButtonAdd
|
|||
|
//
|
|||
|
this.ButtonAdd.Location = new System.Drawing.Point(598, 44);
|
|||
|
this.ButtonAdd.Name = "ButtonAdd";
|
|||
|
this.ButtonAdd.Size = new System.Drawing.Size(112, 35);
|
|||
|
this.ButtonAdd.TabIndex = 6;
|
|||
|
this.ButtonAdd.Text = "Добавить";
|
|||
|
this.ButtonAdd.UseVisualStyleBackColor = true;
|
|||
|
this.ButtonAdd.Click += new System.EventHandler(this.ButtonAdd_Click);
|
|||
|
//
|
|||
|
// ButtonDel
|
|||
|
//
|
|||
|
this.ButtonDel.Location = new System.Drawing.Point(598, 147);
|
|||
|
this.ButtonDel.Name = "ButtonDel";
|
|||
|
this.ButtonDel.Size = new System.Drawing.Size(112, 35);
|
|||
|
this.ButtonDel.TabIndex = 5;
|
|||
|
this.ButtonDel.Text = "Удалить";
|
|||
|
this.ButtonDel.UseVisualStyleBackColor = true;
|
|||
|
this.ButtonDel.Click += new System.EventHandler(this.ButtonDel_Click);
|
|||
|
//
|
|||
|
// ButtonUpd
|
|||
|
//
|
|||
|
this.ButtonUpd.Location = new System.Drawing.Point(598, 95);
|
|||
|
this.ButtonUpd.Name = "ButtonUpd";
|
|||
|
this.ButtonUpd.Size = new System.Drawing.Size(112, 35);
|
|||
|
this.ButtonUpd.TabIndex = 4;
|
|||
|
this.ButtonUpd.Text = "Изменить";
|
|||
|
this.ButtonUpd.UseVisualStyleBackColor = true;
|
|||
|
this.ButtonUpd.Click += new System.EventHandler(this.ButtonUpd_Click);
|
|||
|
//
|
|||
|
// ButtonCancel
|
|||
|
//
|
|||
|
this.ButtonCancel.Location = new System.Drawing.Point(651, 412);
|
|||
|
this.ButtonCancel.Name = "ButtonCancel";
|
|||
|
this.ButtonCancel.Size = new System.Drawing.Size(87, 26);
|
|||
|
this.ButtonCancel.TabIndex = 12;
|
|||
|
this.ButtonCancel.Text = "Отмена";
|
|||
|
this.ButtonCancel.UseVisualStyleBackColor = true;
|
|||
|
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|||
|
//
|
|||
|
// ButtonSave
|
|||
|
//
|
|||
|
this.ButtonSave.Location = new System.Drawing.Point(558, 412);
|
|||
|
this.ButtonSave.Name = "ButtonSave";
|
|||
|
this.ButtonSave.Size = new System.Drawing.Size(87, 26);
|
|||
|
this.ButtonSave.TabIndex = 11;
|
|||
|
this.ButtonSave.Text = "Сохранить";
|
|||
|
this.ButtonSave.UseVisualStyleBackColor = true;
|
|||
|
this.ButtonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|||
|
//
|
|||
|
// FormSushi
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(750, 450);
|
|||
|
this.Controls.Add(this.ButtonCancel);
|
|||
|
this.Controls.Add(this.ButtonSave);
|
|||
|
this.Controls.Add(this.panel1);
|
|||
|
this.Controls.Add(this.textBoxPrice);
|
|||
|
this.Controls.Add(this.textBoxName);
|
|||
|
this.Controls.Add(this.labelCost);
|
|||
|
this.Controls.Add(this.labelName);
|
|||
|
this.Name = "FormSushi";
|
|||
|
this.Text = "FormSushi";
|
|||
|
this.Load += new System.EventHandler(this.FormSushi_Load);
|
|||
|
this.panel1.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private TextBox textBoxPrice;
|
|||
|
private TextBox textBoxName;
|
|||
|
private Label labelCost;
|
|||
|
private Label labelName;
|
|||
|
private Panel panel1;
|
|||
|
private Button ButtonRef;
|
|||
|
private Button ButtonAdd;
|
|||
|
private Button ButtonDel;
|
|||
|
private Button ButtonUpd;
|
|||
|
private DataGridView dataGridView;
|
|||
|
private Button ButtonCancel;
|
|||
|
private Button ButtonSave;
|
|||
|
}
|
|||
|
}
|