113 lines
4.1 KiB
C#
113 lines
4.1 KiB
C#
namespace ProjectFlowerShop
|
|
{
|
|
partial class FormFlowers
|
|
{
|
|
/// <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();
|
|
UpdateButton = new Button();
|
|
DeleteButton = new Button();
|
|
RefreshButton = new Button();
|
|
((System.ComponentModel.ISupportInitialize)DataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// DataGridView
|
|
//
|
|
DataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
DataGridView.Location = new Point(12, 12);
|
|
DataGridView.Name = "DataGridView";
|
|
DataGridView.RowHeadersWidth = 51;
|
|
DataGridView.Size = new Size(379, 426);
|
|
DataGridView.TabIndex = 0;
|
|
//
|
|
// AddButton
|
|
//
|
|
AddButton.Location = new Point(397, 12);
|
|
AddButton.Name = "AddButton";
|
|
AddButton.Size = new Size(148, 29);
|
|
AddButton.TabIndex = 1;
|
|
AddButton.Text = "Добавить";
|
|
AddButton.UseVisualStyleBackColor = true;
|
|
AddButton.Click += AddButton_Click;
|
|
//
|
|
// UpdateButton
|
|
//
|
|
UpdateButton.Location = new Point(397, 47);
|
|
UpdateButton.Name = "UpdateButton";
|
|
UpdateButton.Size = new Size(148, 29);
|
|
UpdateButton.TabIndex = 2;
|
|
UpdateButton.Text = "Изменить";
|
|
UpdateButton.UseVisualStyleBackColor = true;
|
|
UpdateButton.Click += UpdateButton_Click;
|
|
//
|
|
// DeleteButton
|
|
//
|
|
DeleteButton.Location = new Point(397, 82);
|
|
DeleteButton.Name = "DeleteButton";
|
|
DeleteButton.Size = new Size(148, 29);
|
|
DeleteButton.TabIndex = 3;
|
|
DeleteButton.Text = "Удалить";
|
|
DeleteButton.UseVisualStyleBackColor = true;
|
|
DeleteButton.Click += DeleteButton_Click;
|
|
//
|
|
// RefreshButton
|
|
//
|
|
RefreshButton.Location = new Point(397, 117);
|
|
RefreshButton.Name = "RefreshButton";
|
|
RefreshButton.Size = new Size(148, 29);
|
|
RefreshButton.TabIndex = 4;
|
|
RefreshButton.Text = "Обновить";
|
|
RefreshButton.UseVisualStyleBackColor = true;
|
|
RefreshButton.Click += RefreshButton_Click;
|
|
//
|
|
// FormFlowers
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(557, 450);
|
|
Controls.Add(RefreshButton);
|
|
Controls.Add(DeleteButton);
|
|
Controls.Add(UpdateButton);
|
|
Controls.Add(AddButton);
|
|
Controls.Add(DataGridView);
|
|
Name = "FormFlowers";
|
|
Text = "Цветы";
|
|
Load += FormFlowers_Load;
|
|
((System.ComponentModel.ISupportInitialize)DataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView DataGridView;
|
|
private Button AddButton;
|
|
private Button UpdateButton;
|
|
private Button DeleteButton;
|
|
private Button RefreshButton;
|
|
}
|
|
} |