119 lines
4.4 KiB
C#
119 lines
4.4 KiB
C#
namespace IceCreamShop
|
|
{
|
|
partial class ComponentsForm
|
|
{
|
|
/// <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();
|
|
AddButton = new Button();
|
|
ChangeButton = new Button();
|
|
DeleteButton = new Button();
|
|
RefreshButton = new Button();
|
|
((System.ComponentModel.ISupportInitialize)DataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// DataGridView
|
|
//
|
|
DataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
DataGridView.Location = new Point(14, 16);
|
|
DataGridView.Margin = new Padding(3, 4, 3, 4);
|
|
DataGridView.Name = "DataGridView";
|
|
DataGridView.RowHeadersWidth = 51;
|
|
DataGridView.Size = new Size(422, 467);
|
|
DataGridView.TabIndex = 0;
|
|
//
|
|
// AddButton
|
|
//
|
|
AddButton.Location = new Point(442, 16);
|
|
AddButton.Margin = new Padding(3, 4, 3, 4);
|
|
AddButton.Name = "AddButton";
|
|
AddButton.Size = new Size(144, 31);
|
|
AddButton.TabIndex = 1;
|
|
AddButton.Text = "Добавить";
|
|
AddButton.UseVisualStyleBackColor = true;
|
|
AddButton.Click += AddButton_Click;
|
|
//
|
|
// ChangeButton
|
|
//
|
|
ChangeButton.Location = new Point(442, 55);
|
|
ChangeButton.Margin = new Padding(3, 4, 3, 4);
|
|
ChangeButton.Name = "ChangeButton";
|
|
ChangeButton.Size = new Size(144, 31);
|
|
ChangeButton.TabIndex = 2;
|
|
ChangeButton.Text = "Изменить";
|
|
ChangeButton.UseVisualStyleBackColor = true;
|
|
ChangeButton.Click += ChangeButton_Click;
|
|
//
|
|
// DeleteButton
|
|
//
|
|
DeleteButton.Location = new Point(442, 93);
|
|
DeleteButton.Margin = new Padding(3, 4, 3, 4);
|
|
DeleteButton.Name = "DeleteButton";
|
|
DeleteButton.Size = new Size(144, 31);
|
|
DeleteButton.TabIndex = 3;
|
|
DeleteButton.Text = "Удалить";
|
|
DeleteButton.UseVisualStyleBackColor = true;
|
|
DeleteButton.Click += DeleteButton_Click;
|
|
//
|
|
// RefreshButton
|
|
//
|
|
RefreshButton.Location = new Point(442, 132);
|
|
RefreshButton.Margin = new Padding(3, 4, 3, 4);
|
|
RefreshButton.Name = "RefreshButton";
|
|
RefreshButton.Size = new Size(144, 31);
|
|
RefreshButton.TabIndex = 4;
|
|
RefreshButton.Text = "Обновить";
|
|
RefreshButton.UseVisualStyleBackColor = true;
|
|
RefreshButton.Click += RefreshButton_Click;
|
|
//
|
|
// ComponentsForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(600, 499);
|
|
Controls.Add(RefreshButton);
|
|
Controls.Add(DeleteButton);
|
|
Controls.Add(ChangeButton);
|
|
Controls.Add(AddButton);
|
|
Controls.Add(DataGridView);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "ComponentsForm";
|
|
Text = "Форма компонентов";
|
|
Load += ComponentsForm_Load;
|
|
((System.ComponentModel.ISupportInitialize)DataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView DataGridView;
|
|
private Button AddButton;
|
|
private Button ChangeButton;
|
|
private Button DeleteButton;
|
|
private Button RefreshButton;
|
|
}
|
|
} |