124 lines
4.7 KiB
C#
124 lines
4.7 KiB
C#
namespace CarRepairShopView
|
|
{
|
|
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()
|
|
{
|
|
dataGridView = new DataGridView();
|
|
buttonAddShop = new Button();
|
|
buttonUpdShop = new Button();
|
|
buttonDelShop = new Button();
|
|
buttonRefShop = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.AllowUserToAddRows = false;
|
|
dataGridView.AllowUserToDeleteRows = false;
|
|
dataGridView.BackgroundColor = Color.White;
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Dock = DockStyle.Left;
|
|
dataGridView.Location = new Point(0, 0);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.ReadOnly = true;
|
|
dataGridView.RowHeadersVisible = false;
|
|
dataGridView.RowTemplate.Height = 25;
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridView.ShowCellErrors = false;
|
|
dataGridView.ShowCellToolTips = false;
|
|
dataGridView.ShowEditingIcon = false;
|
|
dataGridView.ShowRowErrors = false;
|
|
dataGridView.Size = new Size(611, 450);
|
|
dataGridView.TabIndex = 0;
|
|
//
|
|
// buttonAddShop
|
|
//
|
|
buttonAddShop.Location = new Point(638, 12);
|
|
buttonAddShop.Name = "buttonAddShop";
|
|
buttonAddShop.Size = new Size(133, 45);
|
|
buttonAddShop.TabIndex = 1;
|
|
buttonAddShop.Text = "Добавить";
|
|
buttonAddShop.UseVisualStyleBackColor = true;
|
|
buttonAddShop.Click += buttonAddShop_Click;
|
|
//
|
|
// buttonUpdShop
|
|
//
|
|
buttonUpdShop.Location = new Point(638, 73);
|
|
buttonUpdShop.Name = "buttonUpdShop";
|
|
buttonUpdShop.Size = new Size(133, 45);
|
|
buttonUpdShop.TabIndex = 2;
|
|
buttonUpdShop.Text = "Редактировать";
|
|
buttonUpdShop.UseVisualStyleBackColor = true;
|
|
buttonUpdShop.Click += buttonUpdShop_Click;
|
|
//
|
|
// buttonDelShop
|
|
//
|
|
buttonDelShop.Location = new Point(638, 137);
|
|
buttonDelShop.Name = "buttonDelShop";
|
|
buttonDelShop.Size = new Size(133, 45);
|
|
buttonDelShop.TabIndex = 3;
|
|
buttonDelShop.Text = "Удалить";
|
|
buttonDelShop.UseVisualStyleBackColor = true;
|
|
buttonDelShop.Click += buttonDelShop_Click;
|
|
//
|
|
// buttonRefShop
|
|
//
|
|
buttonRefShop.Location = new Point(638, 204);
|
|
buttonRefShop.Name = "buttonRefShop";
|
|
buttonRefShop.Size = new Size(133, 45);
|
|
buttonRefShop.TabIndex = 4;
|
|
buttonRefShop.Text = "Обновить";
|
|
buttonRefShop.UseVisualStyleBackColor = true;
|
|
buttonRefShop.Click += buttonRefShop_Click;
|
|
//
|
|
// FormShops
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(buttonRefShop);
|
|
Controls.Add(buttonDelShop);
|
|
Controls.Add(buttonUpdShop);
|
|
Controls.Add(buttonAddShop);
|
|
Controls.Add(dataGridView);
|
|
Name = "FormShops";
|
|
Text = "Магазины";
|
|
Load += FormShops_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private Button buttonAddShop;
|
|
private Button buttonUpdShop;
|
|
private Button buttonDelShop;
|
|
private Button buttonRefShop;
|
|
}
|
|
} |