ISEbd-21_Gruzdev_A.P._Compu.../ComputersShop/ComputersShopView/FormComputer.Designer.cs
2024-04-12 19:04:11 +04:00

222 lines
8.0 KiB
C#

namespace ComputersShopView
{
partial class FormComputer
{
/// <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()
{
label1 = new Label();
label2 = new Label();
textBoxName = new TextBox();
textBoxPrice = new TextBox();
groupBox1 = new GroupBox();
dataGridView = new DataGridView();
id = new DataGridViewTextBoxColumn();
CmponentName = new DataGridViewTextBoxColumn();
Count = new DataGridViewTextBoxColumn();
buttonAdd = new Button();
buttonUpd = new Button();
buttonRef = new Button();
buttonDel = new Button();
buttonSave = new Button();
buttonCancel = new Button();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(26, 9);
label1.Name = "label1";
label1.Size = new Size(62, 15);
label1.TabIndex = 0;
label1.Text = "Название:";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(26, 49);
label2.Name = "label2";
label2.Size = new Size(70, 15);
label2.TabIndex = 1;
label2.Text = "Стоимость:";
//
// textBoxName
//
textBoxName.Location = new Point(113, 6);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(261, 23);
textBoxName.TabIndex = 2;
//
// textBoxPrice
//
textBoxPrice.Location = new Point(113, 46);
textBoxPrice.Name = "textBoxPrice";
textBoxPrice.Size = new Size(136, 23);
textBoxPrice.TabIndex = 3;
//
// groupBox1
//
groupBox1.Controls.Add(dataGridView);
groupBox1.Controls.Add(buttonAdd);
groupBox1.Controls.Add(buttonUpd);
groupBox1.Controls.Add(buttonRef);
groupBox1.Controls.Add(buttonDel);
groupBox1.Location = new Point(26, 87);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(531, 260);
groupBox1.TabIndex = 4;
groupBox1.TabStop = false;
groupBox1.Text = "Компоненты";
//
// dataGridView
//
dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Columns.AddRange(new DataGridViewColumn[] { id, CmponentName, Count });
dataGridView.Location = new Point(6, 22);
dataGridView.Name = "dataGridView";
dataGridView.RowTemplate.Height = 25;
dataGridView.Size = new Size(372, 232);
dataGridView.TabIndex = 9;
//
// id
//
id.HeaderText = "id";
id.Name = "id";
id.Visible = false;
//
// CmponentName
//
CmponentName.HeaderText = "Компонент";
CmponentName.Name = "CmponentName";
//
// Count
//
Count.HeaderText = "Количество";
Count.Name = "Count";
//
// buttonAdd
//
buttonAdd.Location = new Point(394, 37);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(96, 28);
buttonAdd.TabIndex = 5;
buttonAdd.Text = "Добавить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += ButtonAdd_Click;
//
// buttonUpd
//
buttonUpd.Location = new Point(394, 81);
buttonUpd.Name = "buttonUpd";
buttonUpd.Size = new Size(96, 28);
buttonUpd.TabIndex = 6;
buttonUpd.Text = "Изменить";
buttonUpd.UseVisualStyleBackColor = true;
buttonUpd.Click += ButtonUpd_Click;
//
// buttonRef
//
buttonRef.Location = new Point(394, 177);
buttonRef.Name = "buttonRef";
buttonRef.Size = new Size(96, 28);
buttonRef.TabIndex = 8;
buttonRef.Text = "Обновить";
buttonRef.UseVisualStyleBackColor = true;
buttonRef.Click += ButtonRef_Click;
//
// buttonDel
//
buttonDel.Location = new Point(394, 127);
buttonDel.Name = "buttonDel";
buttonDel.Size = new Size(96, 28);
buttonDel.TabIndex = 7;
buttonDel.Text = "Удалить";
buttonDel.UseVisualStyleBackColor = true;
buttonDel.Click += ButtonDel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(281, 372);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(93, 28);
buttonSave.TabIndex = 9;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(389, 372);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(101, 28);
buttonCancel.TabIndex = 10;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// FormComputer
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(577, 412);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(groupBox1);
Controls.Add(textBoxPrice);
Controls.Add(textBoxName);
Controls.Add(label2);
Controls.Add(label1);
Name = "FormComputer";
Text = "Изделие";
Load += FormComputer_Load;
groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private TextBox textBoxName;
private TextBox textBoxPrice;
private GroupBox groupBox1;
private Button buttonAdd;
private Button buttonUpd;
private Button buttonDel;
private Button buttonRef;
private Button buttonSave;
private Button buttonCancel;
private DataGridView dataGridView;
private DataGridViewTextBoxColumn id;
private DataGridViewTextBoxColumn CmponentName;
private DataGridViewTextBoxColumn Count;
}
}