75 lines
2.9 KiB
C#
75 lines
2.9 KiB
C#
namespace JewelryStore
|
|
{
|
|
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()
|
|
{
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.ButtonDel = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 85);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
this.dataGridView.Size = new System.Drawing.Size(559, 453);
|
|
this.dataGridView.TabIndex = 6;
|
|
//
|
|
// ButtonDel
|
|
//
|
|
this.ButtonDel.Location = new System.Drawing.Point(466, 40);
|
|
this.ButtonDel.Name = "ButtonDel";
|
|
this.ButtonDel.Size = new System.Drawing.Size(105, 29);
|
|
this.ButtonDel.TabIndex = 11;
|
|
this.ButtonDel.Text = "Удалить";
|
|
this.ButtonDel.UseVisualStyleBackColor = true;
|
|
this.ButtonDel.Click += new System.EventHandler(this.ButtonDel_Click);
|
|
//
|
|
// FormClients
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(588, 549);
|
|
this.Controls.Add(this.ButtonDel);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Name = "FormClients";
|
|
this.Text = "Клиенты";
|
|
this.Load += new System.EventHandler(this.FormClients_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private Button ButtonDel;
|
|
}
|
|
} |