131 lines
4.6 KiB
C#
Raw Normal View History

namespace ProjectFamilyBudget.Forms
{
partial class FormExpenseReport
{
/// <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()
{
buttonSelectFile = new Button();
labelFile = new Label();
label = new Label();
dateTimePicker = new DateTimePicker();
buttonCreate = new Button();
2024-12-01 16:33:11 +04:00
label1 = new Label();
comboBoxSelectExpense = new ComboBox();
SuspendLayout();
//
// buttonSelectFile
//
buttonSelectFile.Location = new Point(12, 12);
buttonSelectFile.Name = "buttonSelectFile";
buttonSelectFile.Size = new Size(75, 23);
buttonSelectFile.TabIndex = 0;
buttonSelectFile.Text = "Выбрать";
buttonSelectFile.UseVisualStyleBackColor = true;
buttonSelectFile.Click += buttonSelectFile_Click;
//
// labelFile
//
labelFile.AutoSize = true;
labelFile.Location = new Point(108, 16);
labelFile.Name = "labelFile";
labelFile.Size = new Size(36, 15);
labelFile.TabIndex = 1;
labelFile.Text = "Файл";
//
// label
//
label.AutoSize = true;
label.Location = new Point(12, 66);
label.Name = "label";
label.Size = new Size(32, 15);
label.TabIndex = 2;
label.Text = "Дата";
//
// dateTimePicker
//
2024-12-01 16:33:11 +04:00
dateTimePicker.Location = new Point(69, 60);
dateTimePicker.Name = "dateTimePicker";
dateTimePicker.Size = new Size(227, 23);
dateTimePicker.TabIndex = 3;
//
// buttonCreate
//
buttonCreate.Location = new Point(95, 144);
buttonCreate.Name = "buttonCreate";
buttonCreate.Size = new Size(123, 23);
buttonCreate.TabIndex = 4;
buttonCreate.Text = "Сформировать";
buttonCreate.UseVisualStyleBackColor = true;
buttonCreate.Click += buttonCreate_Click;
//
2024-12-01 16:33:11 +04:00
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 107);
label1.Name = "label1";
label1.Size = new Size(45, 15);
label1.TabIndex = 5;
label1.Text = "Расход";
//
// comboBoxSelectExpense
//
comboBoxSelectExpense.FormattingEnabled = true;
comboBoxSelectExpense.Location = new Point(69, 104);
comboBoxSelectExpense.Name = "comboBoxSelectExpense";
comboBoxSelectExpense.Size = new Size(227, 23);
comboBoxSelectExpense.TabIndex = 6;
//
// FormExpenseReport
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(321, 179);
2024-12-01 16:33:11 +04:00
Controls.Add(comboBoxSelectExpense);
Controls.Add(label1);
Controls.Add(buttonCreate);
Controls.Add(dateTimePicker);
Controls.Add(label);
Controls.Add(labelFile);
Controls.Add(buttonSelectFile);
Name = "FormExpenseReport";
StartPosition = FormStartPosition.CenterParent;
Text = "Траты людей";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonSelectFile;
private Label labelFile;
private Label label;
private DateTimePicker dateTimePicker;
private Button buttonCreate;
2024-12-01 16:33:11 +04:00
private Label label1;
private ComboBox comboBoxSelectExpense;
}
}