121 lines
4.4 KiB
C#
121 lines
4.4 KiB
C#
namespace FishFactory.Forms
|
|
{
|
|
partial class FormComponents
|
|
{
|
|
/// <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, -2);
|
|
dataGridView.Margin = new Padding(3, 4, 3, 4);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.ReadOnly = true;
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.RowTemplate.Height = 24;
|
|
dataGridView.Size = new Size(499, 568);
|
|
dataGridView.TabIndex = 0;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(525, 48);
|
|
buttonAdd.Margin = new Padding(3, 4, 3, 4);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(125, 35);
|
|
buttonAdd.TabIndex = 1;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += buttonAdd_Click;
|
|
//
|
|
// buttonUpd
|
|
//
|
|
buttonUpd.Location = new Point(525, 98);
|
|
buttonUpd.Margin = new Padding(3, 4, 3, 4);
|
|
buttonUpd.Name = "buttonUpd";
|
|
buttonUpd.Size = new Size(125, 35);
|
|
buttonUpd.TabIndex = 2;
|
|
buttonUpd.Text = "Изменить";
|
|
buttonUpd.UseVisualStyleBackColor = true;
|
|
buttonUpd.Click += buttonUpd_Click;
|
|
//
|
|
// buttonDel
|
|
//
|
|
buttonDel.Location = new Point(525, 150);
|
|
buttonDel.Margin = new Padding(3, 4, 3, 4);
|
|
buttonDel.Name = "buttonDel";
|
|
buttonDel.Size = new Size(125, 35);
|
|
buttonDel.TabIndex = 3;
|
|
buttonDel.Text = "Удалить";
|
|
buttonDel.UseVisualStyleBackColor = true;
|
|
buttonDel.Click += buttonDel_Click;
|
|
//
|
|
// buttonRef
|
|
//
|
|
buttonRef.Location = new Point(525, 201);
|
|
buttonRef.Margin = new Padding(3, 4, 3, 4);
|
|
buttonRef.Name = "buttonRef";
|
|
buttonRef.Size = new Size(125, 35);
|
|
buttonRef.TabIndex = 4;
|
|
buttonRef.Text = "Обновить";
|
|
buttonRef.UseVisualStyleBackColor = true;
|
|
buttonRef.Click += buttonRef_Click;
|
|
//
|
|
// FormComponents
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(676, 562);
|
|
Controls.Add(buttonRef);
|
|
Controls.Add(buttonDel);
|
|
Controls.Add(buttonUpd);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(dataGridView);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "FormComponents";
|
|
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;
|
|
}
|
|
} |