123 lines
5.3 KiB
C#
123 lines
5.3 KiB
C#
namespace LawFirmView
|
|
{
|
|
partial class FormShops
|
|
{
|
|
/// <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.ButtonAdd = new System.Windows.Forms.Button();
|
|
this.ButtonUpd = new System.Windows.Forms.Button();
|
|
this.ButtonDel = new System.Windows.Forms.Button();
|
|
this.ButtonRef = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.BackgroundColor = System.Drawing.Color.White;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Left;
|
|
this.dataGridView.Location = new System.Drawing.Point(0, 0);
|
|
this.dataGridView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowHeadersWidth = 51;
|
|
this.dataGridView.RowTemplate.Height = 29;
|
|
this.dataGridView.Size = new System.Drawing.Size(552, 338);
|
|
this.dataGridView.TabIndex = 0;
|
|
//
|
|
// ButtonAdd
|
|
//
|
|
this.ButtonAdd.Location = new System.Drawing.Point(586, 25);
|
|
this.ButtonAdd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.ButtonAdd.Name = "ButtonAdd";
|
|
this.ButtonAdd.Size = new System.Drawing.Size(93, 36);
|
|
this.ButtonAdd.TabIndex = 1;
|
|
this.ButtonAdd.Text = "Создать";
|
|
this.ButtonAdd.UseVisualStyleBackColor = true;
|
|
this.ButtonAdd.Click += new System.EventHandler(this.ButtonAdd_Click);
|
|
//
|
|
// ButtonUpd
|
|
//
|
|
this.ButtonUpd.Location = new System.Drawing.Point(586, 76);
|
|
this.ButtonUpd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.ButtonUpd.Name = "ButtonUpd";
|
|
this.ButtonUpd.Size = new System.Drawing.Size(93, 36);
|
|
this.ButtonUpd.TabIndex = 2;
|
|
this.ButtonUpd.Text = "Изменить";
|
|
this.ButtonUpd.UseVisualStyleBackColor = true;
|
|
this.ButtonUpd.Click += new System.EventHandler(this.ButtonUpd_Click);
|
|
//
|
|
// ButtonDel
|
|
//
|
|
this.ButtonDel.Location = new System.Drawing.Point(586, 124);
|
|
this.ButtonDel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.ButtonDel.Name = "ButtonDel";
|
|
this.ButtonDel.Size = new System.Drawing.Size(93, 36);
|
|
this.ButtonDel.TabIndex = 3;
|
|
this.ButtonDel.Text = "Удалить";
|
|
this.ButtonDel.UseVisualStyleBackColor = true;
|
|
this.ButtonDel.Click += new System.EventHandler(this.ButtonDel_Click);
|
|
//
|
|
// ButtonRef
|
|
//
|
|
this.ButtonRef.Location = new System.Drawing.Point(586, 172);
|
|
this.ButtonRef.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.ButtonRef.Name = "ButtonRef";
|
|
this.ButtonRef.Size = new System.Drawing.Size(93, 36);
|
|
this.ButtonRef.TabIndex = 4;
|
|
this.ButtonRef.Text = "Обновить";
|
|
this.ButtonRef.UseVisualStyleBackColor = true;
|
|
this.ButtonRef.Click += new System.EventHandler(this.ButtonRef_Click);
|
|
//
|
|
// FormShops
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(700, 338);
|
|
this.Controls.Add(this.ButtonRef);
|
|
this.Controls.Add(this.ButtonDel);
|
|
this.Controls.Add(this.ButtonUpd);
|
|
this.Controls.Add(this.ButtonAdd);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.Name = "FormShops";
|
|
this.Text = "Магазины";
|
|
this.Load += new System.EventHandler(this.FormShops_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private Button ButtonAdd;
|
|
private Button ButtonUpd;
|
|
private Button ButtonDel;
|
|
private Button ButtonRef;
|
|
}
|
|
} |