PIbd-22_Kamcharova_K.A_Reno.../RenovationWork/FormRepairs.Designer.cs

114 lines
4.0 KiB
C#
Raw Normal View History

2024-04-17 09:22:08 +04:00
namespace RenovationWorkView
{
partial class FormRepairs
{
/// <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()
{
2024-05-19 13:23:06 +04:00
dataGridView = new DataGridView();
buttonAdd = new Button();
buttonUpd = new Button();
buttonDel = new Button();
buttonRef = new Button();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
2024-04-17 09:22:08 +04:00
//
// dataGridView
//
2024-05-19 13:23:06 +04:00
dataGridView.BackgroundColor = SystemColors.ControlLightLight;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Location = new Point(2, 2);
dataGridView.Name = "dataGridView";
dataGridView.RowTemplate.Height = 25;
dataGridView.Size = new Size(553, 444);
dataGridView.TabIndex = 0;
2024-04-17 09:22:08 +04:00
//
// buttonAdd
//
2024-05-19 13:23:06 +04:00
buttonAdd.Location = new Point(561, 12);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(98, 23);
buttonAdd.TabIndex = 1;
buttonAdd.Text = "Добавить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += buttonAdd_Click;
2024-04-17 09:22:08 +04:00
//
// buttonUpd
//
2024-05-19 13:23:06 +04:00
buttonUpd.Location = new Point(561, 41);
buttonUpd.Name = "buttonUpd";
buttonUpd.Size = new Size(98, 23);
buttonUpd.TabIndex = 2;
buttonUpd.Text = "Изменить";
buttonUpd.UseVisualStyleBackColor = true;
buttonUpd.Click += buttonUpd_Click;
2024-04-17 09:22:08 +04:00
//
// buttonDel
//
2024-05-19 13:23:06 +04:00
buttonDel.Location = new Point(561, 70);
buttonDel.Name = "buttonDel";
buttonDel.Size = new Size(98, 23);
buttonDel.TabIndex = 3;
buttonDel.Text = "Удалить";
buttonDel.UseVisualStyleBackColor = true;
buttonDel.Click += buttonDel_Click;
2024-04-17 09:22:08 +04:00
//
// buttonRef
//
2024-05-19 13:23:06 +04:00
buttonRef.Location = new Point(561, 99);
buttonRef.Name = "buttonRef";
buttonRef.Size = new Size(98, 23);
buttonRef.TabIndex = 4;
buttonRef.Text = "Обновить";
buttonRef.UseVisualStyleBackColor = true;
buttonRef.Click += buttonRef_Click;
2024-04-17 09:22:08 +04:00
//
// FormRepairs
//
2024-05-19 13:23:06 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(671, 448);
Controls.Add(buttonRef);
Controls.Add(buttonDel);
Controls.Add(buttonUpd);
Controls.Add(buttonAdd);
Controls.Add(dataGridView);
Name = "FormRepairs";
Text = "Список работ";
Load += FormRepairs_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
2024-04-17 09:22:08 +04:00
}
#endregion
private DataGridView dataGridView;
private Button buttonAdd;
private Button buttonUpd;
private Button buttonDel;
private Button buttonRef;
}
}