2024-05-13 21:06:39 +04:00
|
|
|
|
namespace DinerView {
|
|
|
|
|
partial class FormImplementers {
|
|
|
|
|
/// <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();
|
|
|
|
|
buttonAdd = new Button();
|
|
|
|
|
buttonCange = new Button();
|
|
|
|
|
buttonDelete = new Button();
|
|
|
|
|
buttonUpdate = new Button();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// dataGridView
|
|
|
|
|
//
|
|
|
|
|
dataGridView.AllowUserToAddRows = false;
|
|
|
|
|
dataGridView.AllowUserToDeleteRows = false;
|
2024-06-15 21:32:24 +04:00
|
|
|
|
dataGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
2024-05-13 21:06:39 +04:00
|
|
|
|
dataGridView.BackgroundColor = SystemColors.ButtonHighlight;
|
|
|
|
|
dataGridView.BorderStyle = BorderStyle.None;
|
|
|
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
dataGridView.Location = new Point(0, 0);
|
|
|
|
|
dataGridView.Name = "dataGridView";
|
|
|
|
|
dataGridView.RowHeadersVisible = false;
|
|
|
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
|
|
|
dataGridView.Size = new Size(468, 450);
|
|
|
|
|
dataGridView.TabIndex = 1;
|
|
|
|
|
//
|
|
|
|
|
// buttonAdd
|
|
|
|
|
//
|
2024-06-15 21:32:24 +04:00
|
|
|
|
buttonAdd.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
2024-05-13 21:06:39 +04:00
|
|
|
|
buttonAdd.Location = new Point(509, 12);
|
|
|
|
|
buttonAdd.Name = "buttonAdd";
|
|
|
|
|
buttonAdd.Size = new Size(95, 35);
|
|
|
|
|
buttonAdd.TabIndex = 2;
|
|
|
|
|
buttonAdd.Text = "Добавить";
|
|
|
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonAdd.Click += buttonAdd_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonCange
|
|
|
|
|
//
|
2024-06-15 21:32:24 +04:00
|
|
|
|
buttonCange.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
2024-05-13 21:06:39 +04:00
|
|
|
|
buttonCange.Location = new Point(509, 53);
|
|
|
|
|
buttonCange.Name = "buttonCange";
|
|
|
|
|
buttonCange.Size = new Size(95, 35);
|
|
|
|
|
buttonCange.TabIndex = 3;
|
|
|
|
|
buttonCange.Text = "Изменить";
|
|
|
|
|
buttonCange.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCange.Click += buttonCange_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonDelete
|
|
|
|
|
//
|
2024-06-15 21:32:24 +04:00
|
|
|
|
buttonDelete.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
2024-05-13 21:06:39 +04:00
|
|
|
|
buttonDelete.Location = new Point(509, 94);
|
|
|
|
|
buttonDelete.Name = "buttonDelete";
|
|
|
|
|
buttonDelete.Size = new Size(95, 35);
|
|
|
|
|
buttonDelete.TabIndex = 4;
|
|
|
|
|
buttonDelete.Text = "Удалить";
|
|
|
|
|
buttonDelete.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonDelete.Click += buttonDelete_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonUpdate
|
|
|
|
|
//
|
2024-06-15 21:32:24 +04:00
|
|
|
|
buttonUpdate.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
2024-05-13 21:06:39 +04:00
|
|
|
|
buttonUpdate.Location = new Point(509, 135);
|
|
|
|
|
buttonUpdate.Name = "buttonUpdate";
|
|
|
|
|
buttonUpdate.Size = new Size(95, 35);
|
|
|
|
|
buttonUpdate.TabIndex = 5;
|
|
|
|
|
buttonUpdate.Text = "Обновить";
|
|
|
|
|
buttonUpdate.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonUpdate.Click += buttonUpdate_Click;
|
|
|
|
|
//
|
|
|
|
|
// FormImplementers
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
BackColor = SystemColors.ActiveBorder;
|
|
|
|
|
ClientSize = new Size(635, 450);
|
|
|
|
|
Controls.Add(buttonUpdate);
|
|
|
|
|
Controls.Add(buttonDelete);
|
|
|
|
|
Controls.Add(buttonCange);
|
|
|
|
|
Controls.Add(buttonAdd);
|
|
|
|
|
Controls.Add(dataGridView);
|
|
|
|
|
Name = "FormImplementers";
|
|
|
|
|
Text = "Исполнители";
|
|
|
|
|
Load += FormImplementers_Load;
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private DataGridView dataGridView;
|
|
|
|
|
private Button buttonAdd;
|
|
|
|
|
private Button buttonCange;
|
|
|
|
|
private Button buttonDelete;
|
|
|
|
|
private Button buttonUpdate;
|
|
|
|
|
}
|
|
|
|
|
}
|