123 lines
4.6 KiB
C#
123 lines
4.6 KiB
C#
namespace GasStation.Forms
|
|
{
|
|
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()
|
|
{
|
|
panel1 = new Panel();
|
|
buttonUpd = new Button();
|
|
buttonDel = new Button();
|
|
buttonAdd = new Button();
|
|
dataGridViewData = new DataGridView();
|
|
panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewData).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(buttonUpd);
|
|
panel1.Controls.Add(buttonDel);
|
|
panel1.Controls.Add(buttonAdd);
|
|
panel1.Dock = DockStyle.Right;
|
|
panel1.Location = new Point(631, 0);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(170, 477);
|
|
panel1.TabIndex = 0;
|
|
//
|
|
// buttonUpd
|
|
//
|
|
buttonUpd.Location = new Point(47, 324);
|
|
buttonUpd.Name = "buttonUpd";
|
|
buttonUpd.Size = new Size(75, 69);
|
|
buttonUpd.TabIndex = 2;
|
|
buttonUpd.Text = "Редактировать";
|
|
buttonUpd.UseVisualStyleBackColor = true;
|
|
buttonUpd.Click += ButtonUpd_Click;
|
|
//
|
|
// buttonDel
|
|
//
|
|
buttonDel.Location = new Point(45, 178);
|
|
buttonDel.Name = "buttonDel";
|
|
buttonDel.Size = new Size(77, 73);
|
|
buttonDel.TabIndex = 1;
|
|
buttonDel.Text = "Удалить";
|
|
buttonDel.UseVisualStyleBackColor = true;
|
|
buttonDel.Click += ButtonDel_Click;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(47, 41);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(75, 73);
|
|
buttonAdd.TabIndex = 0;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += ButtonAdd_Click;
|
|
//
|
|
// dataGridViewData
|
|
//
|
|
dataGridViewData.AllowUserToAddRows = false;
|
|
dataGridViewData.AllowUserToDeleteRows = false;
|
|
dataGridViewData.AllowUserToResizeColumns = false;
|
|
dataGridViewData.AllowUserToResizeRows = false;
|
|
dataGridViewData.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|
dataGridViewData.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewData.Dock = DockStyle.Fill;
|
|
dataGridViewData.Location = new Point(0, 0);
|
|
dataGridViewData.MultiSelect = false;
|
|
dataGridViewData.Name = "dataGridViewData";
|
|
dataGridViewData.ReadOnly = true;
|
|
dataGridViewData.RowHeadersVisible = false;
|
|
dataGridViewData.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridViewData.Size = new Size(631, 477);
|
|
dataGridViewData.TabIndex = 1;
|
|
//
|
|
// FormSuppliers
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(801, 477);
|
|
Controls.Add(dataGridViewData);
|
|
Controls.Add(panel1);
|
|
Name = "FormSuppliers";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Поставщики";
|
|
Load += FormSuppliers_Load;
|
|
panel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewData).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel1;
|
|
private Button buttonUpd;
|
|
private Button buttonDel;
|
|
private Button buttonAdd;
|
|
private DataGridView dataGridViewData;
|
|
}
|
|
} |