86 lines
3.0 KiB
C#
86 lines
3.0 KiB
C#
namespace WinFormsApp
|
|
{
|
|
partial class FormSuppliers
|
|
{
|
|
/// <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();
|
|
buttonEdit = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Dock = DockStyle.Left;
|
|
dataGridView.Location = new Point(0, 0);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.Size = new Size(615, 637);
|
|
dataGridView.TabIndex = 4;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(635, 50);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(75, 23);
|
|
buttonAdd.TabIndex = 5;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += buttonAdd_Click;
|
|
//
|
|
// buttonEdit
|
|
//
|
|
buttonEdit.Location = new Point(648, 115);
|
|
buttonEdit.Name = "buttonEdit";
|
|
buttonEdit.Size = new Size(122, 23);
|
|
buttonEdit.TabIndex = 6;
|
|
buttonEdit.Text = "Редактировать";
|
|
buttonEdit.UseVisualStyleBackColor = true;
|
|
buttonEdit.Click += buttonEdit_Click;
|
|
//
|
|
// FormSuppliers
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(919, 637);
|
|
Controls.Add(buttonEdit);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(dataGridView);
|
|
Name = "FormSuppliers";
|
|
Text = "FormSuppliers";
|
|
Load += FormSuppliers_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
private DataGridView dataGridView;
|
|
private Button buttonAdd;
|
|
private Button buttonEdit;
|
|
}
|
|
} |