PIbd-23_Baryshev_D.A._Garage/ProjectGarage/Forms/FormReplenishment.Designer.cs
2024-11-20 14:50:06 +04:00

148 lines
6.7 KiB
C#

namespace ProjectGarage.Forms
{
partial class FormReplenishment
{
/// <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()
{
comboBoxReplenishmentDriver = new ComboBox();
labelReplenishmentDriver = new Label();
groupBoxReplenishment = new GroupBox();
dataGridViewReplenishment = new DataGridView();
ColumnFuel = new DataGridViewComboBoxColumn();
ColumnAmount = new DataGridViewTextBoxColumn();
ButtonReplenishmentSave = new Button();
ButtonReplenishmentCancel = new Button();
groupBoxReplenishment.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridViewReplenishment).BeginInit();
SuspendLayout();
//
// comboBoxReplenishmentDriver
//
comboBoxReplenishmentDriver.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxReplenishmentDriver.FormattingEnabled = true;
comboBoxReplenishmentDriver.Location = new Point(141, 16);
comboBoxReplenishmentDriver.Name = "comboBoxReplenishmentDriver";
comboBoxReplenishmentDriver.Size = new Size(151, 28);
comboBoxReplenishmentDriver.TabIndex = 9;
//
// labelReplenishmentDriver
//
labelReplenishmentDriver.AutoSize = true;
labelReplenishmentDriver.Location = new Point(21, 19);
labelReplenishmentDriver.Name = "labelReplenishmentDriver";
labelReplenishmentDriver.Size = new Size(74, 20);
labelReplenishmentDriver.TabIndex = 8;
labelReplenishmentDriver.Text = "Водитель";
//
// groupBoxReplenishment
//
groupBoxReplenishment.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
groupBoxReplenishment.Controls.Add(dataGridViewReplenishment);
groupBoxReplenishment.Location = new Point(21, 66);
groupBoxReplenishment.Name = "groupBoxReplenishment";
groupBoxReplenishment.Size = new Size(271, 288);
groupBoxReplenishment.TabIndex = 10;
groupBoxReplenishment.TabStop = false;
groupBoxReplenishment.Text = "Пополнение топлива";
//
// dataGridViewReplenishment
//
dataGridViewReplenishment.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridViewReplenishment.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridViewReplenishment.Columns.AddRange(new DataGridViewColumn[] { ColumnFuel, ColumnAmount });
dataGridViewReplenishment.Dock = DockStyle.Fill;
dataGridViewReplenishment.Location = new Point(3, 23);
dataGridViewReplenishment.Name = "dataGridViewReplenishment";
dataGridViewReplenishment.RowHeadersVisible = false;
dataGridViewReplenishment.RowHeadersWidth = 51;
dataGridViewReplenishment.Size = new Size(265, 262);
dataGridViewReplenishment.TabIndex = 0;
//
// ColumnFuel
//
ColumnFuel.HeaderText = "Топливо";
ColumnFuel.MinimumWidth = 6;
ColumnFuel.Name = "ColumnFuel";
//
// ColumnAmount
//
ColumnAmount.HeaderText = "Кол-во";
ColumnAmount.MinimumWidth = 6;
ColumnAmount.Name = "ColumnAmount";
//
// ButtonReplenishmentSave
//
ButtonReplenishmentSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
ButtonReplenishmentSave.Location = new Point(21, 360);
ButtonReplenishmentSave.Name = "ButtonReplenishmentSave";
ButtonReplenishmentSave.Size = new Size(134, 29);
ButtonReplenishmentSave.TabIndex = 11;
ButtonReplenishmentSave.Text = "Сохранить";
ButtonReplenishmentSave.UseVisualStyleBackColor = true;
ButtonReplenishmentSave.Click += ButtonReplenishmentSave_Click;
//
// ButtonReplenishmentCancel
//
ButtonReplenishmentCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
ButtonReplenishmentCancel.Location = new Point(161, 360);
ButtonReplenishmentCancel.Name = "ButtonReplenishmentCancel";
ButtonReplenishmentCancel.Size = new Size(131, 29);
ButtonReplenishmentCancel.TabIndex = 13;
ButtonReplenishmentCancel.Text = "Отмена";
ButtonReplenishmentCancel.UseVisualStyleBackColor = true;
ButtonReplenishmentCancel.Click += ButtonReplenishmentCancel_Click;
//
// FormReplenishment
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(315, 401);
Controls.Add(ButtonReplenishmentCancel);
Controls.Add(ButtonReplenishmentSave);
Controls.Add(groupBoxReplenishment);
Controls.Add(comboBoxReplenishmentDriver);
Controls.Add(labelReplenishmentDriver);
Name = "FormReplenishment";
Text = "FormReplenishment";
groupBoxReplenishment.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dataGridViewReplenishment).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private ComboBox comboBoxReplenishmentDriver;
private Label labelReplenishmentDriver;
private GroupBox groupBoxReplenishment;
private DataGridView dataGridViewReplenishment;
private Button ButtonReplenishmentSave;
private Button ButtonReplenishmentCancel;
private DataGridViewComboBoxColumn ColumnFuel;
private DataGridViewTextBoxColumn ColumnAmount;
}
}