128 lines
4.8 KiB
C#
128 lines
4.8 KiB
C#
namespace FoodOrdersView
|
|
{
|
|
partial class FormDishes
|
|
{
|
|
/// <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()
|
|
{
|
|
dataGridView = new DataGridView();
|
|
buttonUpd = new Button();
|
|
buttonDel = new Button();
|
|
buttonEdit = new Button();
|
|
buttonAdd = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.AllowUserToAddRows = false;
|
|
dataGridView.AllowUserToDeleteRows = false;
|
|
dataGridView.BackgroundColor = SystemColors.ControlLightLight;
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Dock = DockStyle.Left;
|
|
dataGridView.Location = new Point(0, 0);
|
|
dataGridView.Margin = new Padding(5, 4, 5, 4);
|
|
dataGridView.MultiSelect = false;
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.ReadOnly = true;
|
|
dataGridView.RowHeadersVisible = false;
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridView.Size = new Size(466, 480);
|
|
dataGridView.TabIndex = 1;
|
|
//
|
|
// buttonUpd
|
|
//
|
|
buttonUpd.Location = new Point(494, 203);
|
|
buttonUpd.Margin = new Padding(5, 4, 5, 4);
|
|
buttonUpd.Name = "buttonUpd";
|
|
buttonUpd.Size = new Size(101, 36);
|
|
buttonUpd.TabIndex = 8;
|
|
buttonUpd.Text = "Обновить";
|
|
buttonUpd.UseVisualStyleBackColor = true;
|
|
buttonUpd.Click += ButtonUpd_Click;
|
|
//
|
|
// buttonDel
|
|
//
|
|
buttonDel.Location = new Point(494, 140);
|
|
buttonDel.Margin = new Padding(5, 4, 5, 4);
|
|
buttonDel.Name = "buttonDel";
|
|
buttonDel.Size = new Size(101, 36);
|
|
buttonDel.TabIndex = 7;
|
|
buttonDel.Text = "Удалить";
|
|
buttonDel.UseVisualStyleBackColor = true;
|
|
buttonDel.Click += ButtonDel_Click;
|
|
//
|
|
// buttonEdit
|
|
//
|
|
buttonEdit.Location = new Point(494, 77);
|
|
buttonEdit.Margin = new Padding(5, 4, 5, 4);
|
|
buttonEdit.Name = "buttonEdit";
|
|
buttonEdit.Size = new Size(101, 36);
|
|
buttonEdit.TabIndex = 6;
|
|
buttonEdit.Text = "Изменить";
|
|
buttonEdit.UseVisualStyleBackColor = true;
|
|
buttonEdit.Click += ButtonEdit_Click;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(494, 19);
|
|
buttonAdd.Margin = new Padding(5, 4, 5, 4);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(101, 36);
|
|
buttonAdd.TabIndex = 5;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += ButtonAdd_Click;
|
|
//
|
|
// FormFoods
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(618, 480);
|
|
Controls.Add(buttonUpd);
|
|
Controls.Add(buttonDel);
|
|
Controls.Add(buttonEdit);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(dataGridView);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "FormFoods";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Список еды";
|
|
Load += FormFoods_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private Button buttonUpd;
|
|
private Button buttonDel;
|
|
private Button buttonEdit;
|
|
private Button buttonAdd;
|
|
}
|
|
} |