75 lines
2.7 KiB
C#

namespace SewingDresses
{
partial class FormClients
{
/// <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()
{
clientGridView = new DataGridView();
buttonClientDelete = new Button();
((System.ComponentModel.ISupportInitialize)clientGridView).BeginInit();
SuspendLayout();
//
// clientGridView
//
clientGridView.BackgroundColor = SystemColors.ControlLightLight;
clientGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
clientGridView.Location = new Point(3, 1);
clientGridView.Name = "clientGridView";
clientGridView.RowTemplate.Height = 25;
clientGridView.Size = new Size(598, 448);
clientGridView.TabIndex = 0;
//
// buttonClientDelete
//
buttonClientDelete.Location = new Point(642, 33);
buttonClientDelete.Name = "buttonClientDelete";
buttonClientDelete.Size = new Size(126, 23);
buttonClientDelete.TabIndex = 1;
buttonClientDelete.Text = "Delete";
buttonClientDelete.UseVisualStyleBackColor = true;
buttonClientDelete.Click += buttonClientDelete_Click;
//
// FormClients
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(buttonClientDelete);
Controls.Add(clientGridView);
Name = "FormClients";
Text = "FormClients";
Load += FormClients_Load;
((System.ComponentModel.ISupportInitialize)clientGridView).EndInit();
ResumeLayout(false);
}
#endregion
private DataGridView clientGridView;
private Button buttonClientDelete;
}
}