2024-04-07 00:01:10 +04:00
|
|
|
|
namespace SushiBarView
|
2024-04-06 17:15:38 +04:00
|
|
|
|
{
|
|
|
|
|
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()
|
|
|
|
|
{
|
|
|
|
|
dataGridView = new DataGridView();
|
|
|
|
|
buttonRefresh = new Button();
|
|
|
|
|
buttonDelete = new Button();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// dataGridView
|
|
|
|
|
//
|
2024-04-07 00:01:10 +04:00
|
|
|
|
dataGridView.BackgroundColor = Color.AntiqueWhite;
|
2024-04-06 17:15:38 +04:00
|
|
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
dataGridView.Dock = DockStyle.Left;
|
|
|
|
|
dataGridView.Location = new Point(0, 0);
|
|
|
|
|
dataGridView.Name = "dataGridView";
|
2024-04-07 01:27:02 +04:00
|
|
|
|
dataGridView.RowHeadersVisible = false;
|
2024-04-06 17:15:38 +04:00
|
|
|
|
dataGridView.RowHeadersWidth = 51;
|
2024-04-08 11:32:05 +04:00
|
|
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
2024-04-07 00:01:10 +04:00
|
|
|
|
dataGridView.Size = new Size(615, 450);
|
2024-04-06 17:15:38 +04:00
|
|
|
|
dataGridView.TabIndex = 0;
|
|
|
|
|
//
|
|
|
|
|
// buttonRefresh
|
|
|
|
|
//
|
2024-04-07 00:01:10 +04:00
|
|
|
|
buttonRefresh.Location = new Point(669, 53);
|
2024-04-06 17:15:38 +04:00
|
|
|
|
buttonRefresh.Name = "buttonRefresh";
|
2024-04-07 00:01:10 +04:00
|
|
|
|
buttonRefresh.Size = new Size(144, 54);
|
2024-04-06 17:15:38 +04:00
|
|
|
|
buttonRefresh.TabIndex = 1;
|
|
|
|
|
buttonRefresh.Text = "Обновить";
|
|
|
|
|
buttonRefresh.UseVisualStyleBackColor = true;
|
2024-04-07 01:27:02 +04:00
|
|
|
|
buttonRefresh.Click += buttonRefresh_Click;
|
2024-04-06 17:15:38 +04:00
|
|
|
|
//
|
|
|
|
|
// buttonDelete
|
|
|
|
|
//
|
2024-04-07 00:01:10 +04:00
|
|
|
|
buttonDelete.Location = new Point(669, 160);
|
2024-04-06 17:15:38 +04:00
|
|
|
|
buttonDelete.Name = "buttonDelete";
|
2024-04-07 00:01:10 +04:00
|
|
|
|
buttonDelete.Size = new Size(144, 54);
|
2024-04-06 17:15:38 +04:00
|
|
|
|
buttonDelete.TabIndex = 2;
|
|
|
|
|
buttonDelete.Text = "Удалить";
|
|
|
|
|
buttonDelete.UseVisualStyleBackColor = true;
|
2024-04-07 01:27:02 +04:00
|
|
|
|
buttonDelete.Click += buttonDelete_Click;
|
2024-04-06 17:15:38 +04:00
|
|
|
|
//
|
|
|
|
|
// FormClients
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
2024-04-07 00:01:10 +04:00
|
|
|
|
BackColor = Color.BurlyWood;
|
|
|
|
|
ClientSize = new Size(862, 450);
|
2024-04-06 17:15:38 +04:00
|
|
|
|
Controls.Add(buttonDelete);
|
|
|
|
|
Controls.Add(buttonRefresh);
|
|
|
|
|
Controls.Add(dataGridView);
|
|
|
|
|
Name = "FormClients";
|
2024-04-07 00:01:10 +04:00
|
|
|
|
Text = "FormClients";
|
2024-04-07 01:27:02 +04:00
|
|
|
|
Load += FormClients_Load;
|
2024-04-06 17:15:38 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private DataGridView dataGridView;
|
|
|
|
|
private Button buttonRefresh;
|
|
|
|
|
private Button buttonDelete;
|
|
|
|
|
}
|
|
|
|
|
}
|