PIbd-23-Nasyrov-A.G.-Flower.../ProjectFlowerShop/FormComponents.Designer.cs

144 lines
5.1 KiB
C#
Raw Normal View History

2024-02-08 18:25:14 +04:00
namespace ProjectFlowerShop
{
partial class FormComponents
{
/// <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();
buttonAdd = new Button();
buttonChange = new Button();
buttonRemove = new Button();
buttonReload = new Button();
Id = new DataGridViewTextBoxColumn();
Name = new DataGridViewTextBoxColumn();
Price = new DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
//
// dataGridView
//
dataGridView.BackgroundColor = SystemColors.Control;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Columns.AddRange(new DataGridViewColumn[] { Id, Name, Price });
dataGridView.Location = new Point(1, 1);
dataGridView.Name = "dataGridView";
dataGridView.RowHeadersWidth = 51;
dataGridView.RowTemplate.Height = 29;
dataGridView.Size = new Size(558, 449);
dataGridView.TabIndex = 0;
//
// buttonAdd
//
buttonAdd.Location = new Point(565, 12);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(223, 29);
buttonAdd.TabIndex = 1;
buttonAdd.Text = "Добавить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += buttonAdd_Click;
//
// buttonChange
//
buttonChange.Location = new Point(565, 47);
buttonChange.Name = "buttonChange";
buttonChange.Size = new Size(223, 29);
buttonChange.TabIndex = 2;
buttonChange.Text = "Изменить";
buttonChange.UseVisualStyleBackColor = true;
buttonChange.Click += buttonChange_Click;
//
// buttonRemove
//
buttonRemove.Location = new Point(565, 82);
buttonRemove.Name = "buttonRemove";
buttonRemove.Size = new Size(223, 29);
buttonRemove.TabIndex = 3;
buttonRemove.Text = "Удалить";
buttonRemove.UseVisualStyleBackColor = true;
buttonRemove.Click += buttonRemove_Click;
//
// buttonReload
//
buttonReload.Location = new Point(565, 117);
buttonReload.Name = "buttonReload";
buttonReload.Size = new Size(223, 29);
buttonReload.TabIndex = 4;
buttonReload.Text = "Обновить";
buttonReload.UseVisualStyleBackColor = true;
buttonReload.Click += buttonReload_Click;
//
// Id
//
Id.HeaderText = "Id";
Id.MinimumWidth = 6;
Id.Name = "Id";
Id.Visible = false;
Id.Width = 200;
//
// Name
//
Name.HeaderText = "Name";
Name.MinimumWidth = 6;
Name.Name = "Name";
Name.Width = 380;
//
// Price
//
Price.HeaderText = "Price";
Price.MinimumWidth = 6;
Price.Name = "Price";
Price.Width = 125;
//
// FormComponents
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(buttonReload);
Controls.Add(buttonRemove);
Controls.Add(buttonChange);
Controls.Add(buttonAdd);
Controls.Add(dataGridView);
//Name = "FormComponents";
2024-02-08 18:25:14 +04:00
Text = "Компоненты";
Load += FormComponents_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
}
#endregion
private DataGridView dataGridView;
private Button buttonAdd;
private Button buttonChange;
private Button buttonRemove;
private Button buttonReload;
private DataGridViewTextBoxColumn Id;
private DataGridViewTextBoxColumn Name;
private DataGridViewTextBoxColumn Price;
}
}