128 lines
4.8 KiB
C#
128 lines
4.8 KiB
C#
|
namespace ProjectFuel.Forms_
|
|||
|
{
|
|||
|
partial class FormFuels
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
buttonAdd = new Button();
|
|||
|
buttonUpd = new Button();
|
|||
|
buttonDel = new Button();
|
|||
|
dataGridView = new DataGridView();
|
|||
|
panel1.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// panel1
|
|||
|
//
|
|||
|
panel1.Controls.Add(buttonAdd);
|
|||
|
panel1.Controls.Add(buttonUpd);
|
|||
|
panel1.Controls.Add(buttonDel);
|
|||
|
panel1.Dock = DockStyle.Right;
|
|||
|
panel1.Location = new Point(836, 0);
|
|||
|
panel1.Name = "panel1";
|
|||
|
panel1.Size = new Size(230, 618);
|
|||
|
panel1.TabIndex = 0;
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
buttonAdd.BackgroundImage = Properties.Resources._;
|
|||
|
buttonAdd.BackgroundImageLayout = ImageLayout.Stretch;
|
|||
|
buttonAdd.Location = new Point(59, 64);
|
|||
|
buttonAdd.Name = "buttonAdd";
|
|||
|
buttonAdd.Size = new Size(151, 131);
|
|||
|
buttonAdd.TabIndex = 5;
|
|||
|
buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
buttonAdd.Click += ButtonAdd_Click;
|
|||
|
//
|
|||
|
// buttonUpd
|
|||
|
//
|
|||
|
buttonUpd.BackgroundImage = Properties.Resources.ред;
|
|||
|
buttonUpd.BackgroundImageLayout = ImageLayout.Stretch;
|
|||
|
buttonUpd.Location = new Point(58, 246);
|
|||
|
buttonUpd.Name = "buttonUpd";
|
|||
|
buttonUpd.Size = new Size(152, 115);
|
|||
|
buttonUpd.TabIndex = 4;
|
|||
|
buttonUpd.UseVisualStyleBackColor = true;
|
|||
|
buttonUpd.Click += ButtonUpd_Click;
|
|||
|
//
|
|||
|
// buttonDel
|
|||
|
//
|
|||
|
buttonDel.BackgroundImage = Properties.Resources.удалять;
|
|||
|
buttonDel.BackgroundImageLayout = ImageLayout.Stretch;
|
|||
|
buttonDel.Location = new Point(58, 422);
|
|||
|
buttonDel.Name = "buttonDel";
|
|||
|
buttonDel.Size = new Size(151, 126);
|
|||
|
buttonDel.TabIndex = 3;
|
|||
|
buttonDel.UseVisualStyleBackColor = true;
|
|||
|
buttonDel.Click += ButtonDel_Click;
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
dataGridView.AllowUserToAddRows = false;
|
|||
|
dataGridView.AllowUserToDeleteRows = false;
|
|||
|
dataGridView.AllowUserToResizeColumns = false;
|
|||
|
dataGridView.AllowUserToResizeRows = false;
|
|||
|
dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|||
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
dataGridView.Dock = DockStyle.Fill;
|
|||
|
dataGridView.Location = new Point(0, 0);
|
|||
|
dataGridView.MultiSelect = false;
|
|||
|
dataGridView.Name = "dataGridView";
|
|||
|
dataGridView.ReadOnly = true;
|
|||
|
dataGridView.RowHeadersVisible = false;
|
|||
|
dataGridView.RowHeadersWidth = 82;
|
|||
|
dataGridView.RowTemplate.Height = 41;
|
|||
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|||
|
dataGridView.Size = new Size(836, 618);
|
|||
|
dataGridView.TabIndex = 1;
|
|||
|
//
|
|||
|
// FormFuels
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(13F, 32F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(1066, 618);
|
|||
|
Controls.Add(dataGridView);
|
|||
|
Controls.Add(panel1);
|
|||
|
Name = "FormFuels";
|
|||
|
StartPosition = FormStartPosition.CenterParent;
|
|||
|
Text = "Топлива";
|
|||
|
Load += FormFuels_Load;
|
|||
|
panel1.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Panel panel1;
|
|||
|
private DataGridView dataGridView;
|
|||
|
private Button buttonDel;
|
|||
|
private Button buttonUpd;
|
|||
|
private Button buttonAdd;
|
|||
|
}
|
|||
|
}
|