PIbd-23_Baryshev_D.A._Garage/ProjectGarage/Forms/FormFuelReport.Designer.cs
2024-12-18 01:56:55 +04:00

162 lines
6.0 KiB
C#

namespace ProjectGarage.Forms
{
partial class FormFuelReport
{
/// <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()
{
dateTimePickerStart = new DateTimePicker();
dateTimePickerFinal = new DateTimePicker();
buttonMakeReport = new Button();
labelPathToFile = new Label();
labelFuel = new Label();
labelDateStart = new Label();
label4 = new Label();
buttonSelectFilePath = new Button();
textBoxFilePath = new TextBox();
comboBoxFuelReport = new ComboBox();
SuspendLayout();
//
// dateTimePickerStart
//
dateTimePickerStart.Location = new Point(180, 150);
dateTimePickerStart.Name = "dateTimePickerStart";
dateTimePickerStart.Size = new Size(250, 27);
dateTimePickerStart.TabIndex = 0;
//
// dateTimePickerFinal
//
dateTimePickerFinal.Location = new Point(180, 201);
dateTimePickerFinal.Name = "dateTimePickerFinal";
dateTimePickerFinal.Size = new Size(250, 27);
dateTimePickerFinal.TabIndex = 1;
//
// buttonMakeReport
//
buttonMakeReport.Location = new Point(141, 249);
buttonMakeReport.Name = "buttonMakeReport";
buttonMakeReport.Size = new Size(145, 38);
buttonMakeReport.TabIndex = 2;
buttonMakeReport.Text = "Сформировать";
buttonMakeReport.UseVisualStyleBackColor = true;
buttonMakeReport.Click += ButtonMakeReport_Click;
//
// labelPathToFile
//
labelPathToFile.AutoSize = true;
labelPathToFile.Location = new Point(34, 44);
labelPathToFile.Name = "labelPathToFile";
labelPathToFile.Size = new Size(112, 20);
labelPathToFile.TabIndex = 3;
labelPathToFile.Text = "Путь до файла:";
//
// labelFuel
//
labelFuel.AutoSize = true;
labelFuel.Location = new Point(34, 94);
labelFuel.Name = "labelFuel";
labelFuel.Size = new Size(72, 20);
labelFuel.TabIndex = 4;
labelFuel.Text = "Топливо:";
//
// labelDateStart
//
labelDateStart.AutoSize = true;
labelDateStart.Location = new Point(34, 150);
labelDateStart.Name = "labelDateStart";
labelDateStart.Size = new Size(97, 20);
labelDateStart.TabIndex = 5;
labelDateStart.Text = "Дата начала:";
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(34, 201);
label4.Name = "label4";
label4.Size = new Size(90, 20);
label4.TabIndex = 6;
label4.Text = "Дата конца:";
//
// buttonSelectFilePath
//
buttonSelectFilePath.Location = new Point(405, 44);
buttonSelectFilePath.Name = "buttonSelectFilePath";
buttonSelectFilePath.Size = new Size(25, 24);
buttonSelectFilePath.TabIndex = 7;
buttonSelectFilePath.Text = "...";
buttonSelectFilePath.UseVisualStyleBackColor = true;
buttonSelectFilePath.Click += ButtonSelectFilePath_Click;
//
// textBoxFilePath
//
textBoxFilePath.Location = new Point(180, 43);
textBoxFilePath.Name = "textBoxFilePath";
textBoxFilePath.Size = new Size(219, 27);
textBoxFilePath.TabIndex = 8;
//
// comboBoxFuelReport
//
comboBoxFuelReport.FormattingEnabled = true;
comboBoxFuelReport.Location = new Point(180, 94);
comboBoxFuelReport.Name = "comboBoxFuelReport";
comboBoxFuelReport.Size = new Size(250, 28);
comboBoxFuelReport.TabIndex = 9;
//
// FormFuelReport
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(454, 311);
Controls.Add(comboBoxFuelReport);
Controls.Add(textBoxFilePath);
Controls.Add(buttonSelectFilePath);
Controls.Add(label4);
Controls.Add(labelDateStart);
Controls.Add(labelFuel);
Controls.Add(labelPathToFile);
Controls.Add(buttonMakeReport);
Controls.Add(dateTimePickerFinal);
Controls.Add(dateTimePickerStart);
Name = "FormFuelReport";
Text = "FormFuelReport";
ResumeLayout(false);
PerformLayout();
}
#endregion
private DateTimePicker dateTimePickerStart;
private DateTimePicker dateTimePickerFinal;
private Button buttonMakeReport;
private Label labelPathToFile;
private Label labelFuel;
private Label labelDateStart;
private Label label4;
private Button buttonSelectFilePath;
private TextBox textBoxFilePath;
private ComboBox comboBoxFuelReport;
}
}