SushiBarBase/SushiBar/SushiBarView/Forms/FormSushi.Designer.cs

210 lines
7.4 KiB
C#
Raw Normal View History

2024-02-11 17:20:09 +04:00
namespace SushiBarView.Forms
{
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()
{
button1 = new Button();
dataGridView1 = new DataGridView();
groupBox1 = new GroupBox();
button2 = new Button();
button3 = new Button();
button4 = new Button();
button5 = new Button();
button6 = new Button();
ComponentName = new DataGridViewTextBoxColumn();
ComponentCount = new DataGridViewTextBoxColumn();
label1 = new Label();
label2 = new Label();
textBox1 = new TextBox();
textBox2 = new TextBox();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
groupBox1.SuspendLayout();
SuspendLayout();
//
// button1
//
button1.Location = new Point(560, 22);
button1.Name = "button1";
button1.Size = new Size(110, 29);
button1.TabIndex = 0;
button1.Text = "Добавить";
button1.UseVisualStyleBackColor = true;
//
// dataGridView1
//
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Columns.AddRange(new DataGridViewColumn[] { ComponentName, ComponentCount });
dataGridView1.Dock = DockStyle.Left;
dataGridView1.Location = new Point(3, 19);
dataGridView1.Name = "dataGridView1";
dataGridView1.RowTemplate.Height = 25;
dataGridView1.Size = new Size(551, 199);
dataGridView1.TabIndex = 1;
//
// groupBox1
//
groupBox1.Controls.Add(button6);
groupBox1.Controls.Add(button5);
groupBox1.Controls.Add(button4);
groupBox1.Controls.Add(dataGridView1);
groupBox1.Controls.Add(button1);
groupBox1.Location = new Point(12, 76);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(676, 221);
groupBox1.TabIndex = 2;
groupBox1.TabStop = false;
groupBox1.Text = "Компоненты";
//
// button2
//
button2.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
button2.Location = new Point(532, 303);
button2.Name = "button2";
button2.Size = new Size(75, 23);
button2.TabIndex = 3;
button2.Text = "Сохранить";
button2.UseVisualStyleBackColor = true;
//
// button3
//
button3.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
button3.Location = new Point(613, 303);
button3.Name = "button3";
button3.Size = new Size(75, 23);
button3.TabIndex = 4;
button3.Text = "Отмена";
button3.UseVisualStyleBackColor = true;
//
// button4
//
button4.Location = new Point(560, 57);
button4.Name = "button4";
button4.Size = new Size(110, 29);
button4.TabIndex = 2;
button4.Text = "Изменить";
button4.UseVisualStyleBackColor = true;
//
// button5
//
button5.Location = new Point(560, 92);
button5.Name = "button5";
button5.Size = new Size(110, 29);
button5.TabIndex = 3;
button5.Text = "Удалить";
button5.UseVisualStyleBackColor = true;
//
// button6
//
button6.Location = new Point(560, 127);
button6.Name = "button6";
button6.Size = new Size(110, 29);
button6.TabIndex = 4;
button6.Text = "Обновить";
button6.UseVisualStyleBackColor = true;
//
// ComponentName
//
ComponentName.HeaderText = "Компонент";
ComponentName.Name = "ComponentName";
//
// ComponentCount
//
ComponentCount.HeaderText = "Количество";
ComponentCount.Name = "ComponentCount";
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(22, 12);
label1.Name = "label1";
label1.Size = new Size(62, 15);
label1.TabIndex = 5;
label1.Text = "Название:";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(22, 45);
label2.Name = "label2";
label2.Size = new Size(70, 15);
label2.TabIndex = 6;
label2.Text = "Стоимость:";
//
// textBox1
//
textBox1.Location = new Point(98, 42);
textBox1.Name = "textBox1";
textBox1.Size = new Size(244, 23);
textBox1.TabIndex = 7;
//
// textBox2
//
textBox2.Location = new Point(98, 13);
textBox2.Name = "textBox2";
textBox2.Size = new Size(244, 23);
textBox2.TabIndex = 8;
//
// FormSushi
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(700, 338);
Controls.Add(textBox2);
Controls.Add(textBox1);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(button3);
Controls.Add(button2);
Controls.Add(groupBox1);
Margin = new Padding(3, 2, 3, 2);
Name = "FormSushi";
Text = "Суши";
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
groupBox1.ResumeLayout(false);
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private DataGridView dataGridView1;
private GroupBox groupBox1;
private Button button6;
private Button button5;
private Button button4;
private Button button2;
private Button button3;
private DataGridViewTextBoxColumn ComponentName;
private DataGridViewTextBoxColumn ComponentCount;
private Label label1;
private Label label2;
private TextBox textBox1;
private TextBox textBox2;
}
}