namespace SewingDresses
{
partial class FormDresses
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
dressGridView = new DataGridView();
ButtonAdd = new Button();
ButtonChange = new Button();
ButtonDelete = new Button();
ButtonRefresh = new Button();
((System.ComponentModel.ISupportInitialize)dressGridView).BeginInit();
SuspendLayout();
//
// dressGridView
//
dressGridView.BackgroundColor = SystemColors.ButtonHighlight;
dressGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dressGridView.Location = new Point(2, 2);
dressGridView.Name = "dressGridView";
dressGridView.RowTemplate.Height = 25;
dressGridView.Size = new Size(605, 447);
dressGridView.TabIndex = 0;
//
// ButtonAdd
//
ButtonAdd.Location = new Point(661, 30);
ButtonAdd.Name = "ButtonAdd";
ButtonAdd.Size = new Size(92, 35);
ButtonAdd.TabIndex = 1;
ButtonAdd.Text = "Add";
ButtonAdd.UseVisualStyleBackColor = true;
ButtonAdd.Click += ButtonAdd_Click;
//
// ButtonChange
//
ButtonChange.Location = new Point(661, 85);
ButtonChange.Name = "ButtonChange";
ButtonChange.Size = new Size(92, 35);
ButtonChange.TabIndex = 2;
ButtonChange.Text = "Change";
ButtonChange.UseVisualStyleBackColor = true;
ButtonChange.Click += ButtonUpdate_Click;
//
// ButtonDelete
//
ButtonDelete.Location = new Point(661, 142);
ButtonDelete.Name = "ButtonDelete";
ButtonDelete.Size = new Size(92, 35);
ButtonDelete.TabIndex = 3;
ButtonDelete.Text = "Delete";
ButtonDelete.UseVisualStyleBackColor = true;
ButtonDelete.Click += ButtonDelete_Click;
//
// ButtonRefresh
//
ButtonRefresh.Location = new Point(661, 204);
ButtonRefresh.Name = "ButtonRefresh";
ButtonRefresh.Size = new Size(92, 35);
ButtonRefresh.TabIndex = 4;
ButtonRefresh.Text = "Refresh";
ButtonRefresh.UseVisualStyleBackColor = true;
ButtonRefresh.Click += ButtonRefresh_Click;
//
// FormDresses
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(ButtonRefresh);
Controls.Add(ButtonDelete);
Controls.Add(ButtonChange);
Controls.Add(ButtonAdd);
Controls.Add(dressGridView);
Name = "FormDresses";
Text = "Dresses list";
Load += FormDresses_Load;
((System.ComponentModel.ISupportInitialize)dressGridView).EndInit();
ResumeLayout(false);
}
#endregion
private DataGridView dressGridView;
private Button ButtonAdd;
private Button ButtonChange;
private Button ButtonDelete;
private Button ButtonRefresh;
}
}