114 lines
4.1 KiB
C#
114 lines
4.1 KiB
C#
namespace PlumbingRepairView
|
|
{
|
|
partial class FormWorks
|
|
{
|
|
/// <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();
|
|
buttonUpd = new Button();
|
|
buttonDel = new Button();
|
|
buttonRef = new Button();
|
|
((System.ComponentModel.ISupportInitialize)DataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
DataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
DataGridView.Location = new Point(1, 0);
|
|
DataGridView.Name = "dataGridView";
|
|
DataGridView.RowHeadersWidth = 51;
|
|
DataGridView.RowTemplate.Height = 29;
|
|
DataGridView.Size = new Size(611, 449);
|
|
DataGridView.TabIndex = 0;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(670, 23);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(94, 29);
|
|
buttonAdd.TabIndex = 1;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += AddButton_Click;
|
|
//
|
|
// buttonUpd
|
|
//
|
|
buttonUpd.Location = new Point(670, 75);
|
|
buttonUpd.Name = "buttonUpd";
|
|
buttonUpd.Size = new Size(94, 29);
|
|
buttonUpd.TabIndex = 2;
|
|
buttonUpd.Text = "Изменить";
|
|
buttonUpd.UseVisualStyleBackColor = true;
|
|
buttonUpd.Click += ChangeButton_Click;
|
|
//
|
|
// buttonDel
|
|
//
|
|
buttonDel.Location = new Point(670, 132);
|
|
buttonDel.Name = "buttonDel";
|
|
buttonDel.Size = new Size(94, 29);
|
|
buttonDel.TabIndex = 3;
|
|
buttonDel.Text = "Удалить";
|
|
buttonDel.UseVisualStyleBackColor = true;
|
|
buttonDel.Click += DeleteButton_Click;
|
|
//
|
|
// buttonRef
|
|
//
|
|
buttonRef.Location = new Point(670, 188);
|
|
buttonRef.Name = "buttonRef";
|
|
buttonRef.Size = new Size(94, 29);
|
|
buttonRef.TabIndex = 4;
|
|
buttonRef.Text = "Обновить";
|
|
buttonRef.UseVisualStyleBackColor = true;
|
|
buttonRef.Click += UpdateButton_Click;
|
|
//
|
|
// FormWorks
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(buttonRef);
|
|
Controls.Add(buttonDel);
|
|
Controls.Add(buttonUpd);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(DataGridView);
|
|
Name = "FormWorks";
|
|
Text = "Работы";
|
|
Load += FormComponents_Load;
|
|
((System.ComponentModel.ISupportInitialize)DataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView DataGridView;
|
|
private Button buttonAdd;
|
|
private Button buttonUpd;
|
|
private Button buttonDel;
|
|
private Button buttonRef;
|
|
}
|
|
} |