namespace ProjectFamilyBudget.Forms { partial class FormMoneyReport { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { label1 = new Label(); label2 = new Label(); label3 = new Label(); label4 = new Label(); label5 = new Label(); textBoxFilePath = new TextBox(); buttonSelectFilePath = new Button(); comboBoxSelectIncome = new ComboBox(); comboBoxSelectExpense = new ComboBox(); dateTimePickerStart = new DateTimePicker(); dateTimePickerEnd = new DateTimePicker(); buttonMakeReport = new Button(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new Point(21, 19); label1.Name = "label1"; label1.Size = new Size(87, 15); label1.TabIndex = 0; label1.Text = "Путь до файла"; // // label2 // label2.AutoSize = true; label2.Location = new Point(21, 64); label2.Name = "label2"; label2.Size = new Size(41, 15); label2.TabIndex = 1; label2.Text = "Доход"; // // label3 // label3.AutoSize = true; label3.Location = new Point(21, 111); label3.Name = "label3"; label3.Size = new Size(45, 15); label3.TabIndex = 2; label3.Text = "Расход"; // // label4 // label4.AutoSize = true; label4.Location = new Point(21, 164); label4.Name = "label4"; label4.Size = new Size(74, 15); label4.TabIndex = 3; label4.Text = "Дата начала"; // // label5 // label5.AutoSize = true; label5.Location = new Point(21, 205); label5.Name = "label5"; label5.Size = new Size(68, 15); label5.TabIndex = 4; label5.Text = "Дата конца"; // // textBoxFilePath // textBoxFilePath.Location = new Point(137, 16); textBoxFilePath.Name = "textBoxFilePath"; textBoxFilePath.Size = new Size(152, 23); textBoxFilePath.TabIndex = 5; // // buttonSelectFilePath // buttonSelectFilePath.Location = new Point(295, 16); buttonSelectFilePath.Name = "buttonSelectFilePath"; buttonSelectFilePath.Size = new Size(25, 23); buttonSelectFilePath.TabIndex = 6; buttonSelectFilePath.Text = ".."; buttonSelectFilePath.UseVisualStyleBackColor = true; buttonSelectFilePath.Click += buttonSelectFilePath_Click; // // comboBoxSelectIncome // comboBoxSelectIncome.FormattingEnabled = true; comboBoxSelectIncome.Location = new Point(137, 61); comboBoxSelectIncome.Name = "comboBoxSelectIncome"; comboBoxSelectIncome.Size = new Size(183, 23); comboBoxSelectIncome.TabIndex = 7; // // comboBoxSelectExpense // comboBoxSelectExpense.FormattingEnabled = true; comboBoxSelectExpense.Location = new Point(137, 108); comboBoxSelectExpense.Name = "comboBoxSelectExpense"; comboBoxSelectExpense.Size = new Size(183, 23); comboBoxSelectExpense.TabIndex = 8; // // dateTimePickerStart // dateTimePickerStart.Location = new Point(137, 158); dateTimePickerStart.Name = "dateTimePickerStart"; dateTimePickerStart.Size = new Size(183, 23); dateTimePickerStart.TabIndex = 9; // // dateTimePickerEnd // dateTimePickerEnd.Location = new Point(137, 199); dateTimePickerEnd.Name = "dateTimePickerEnd"; dateTimePickerEnd.Size = new Size(183, 23); dateTimePickerEnd.TabIndex = 10; // // buttonMakeReport // buttonMakeReport.Location = new Point(103, 237); buttonMakeReport.Name = "buttonMakeReport"; buttonMakeReport.Size = new Size(138, 23); buttonMakeReport.TabIndex = 11; buttonMakeReport.Text = "Сформировать"; buttonMakeReport.UseVisualStyleBackColor = true; buttonMakeReport.Click += buttonMakeReport_Click; // // FormMoneyReport // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(343, 282); Controls.Add(buttonMakeReport); Controls.Add(dateTimePickerEnd); Controls.Add(dateTimePickerStart); Controls.Add(comboBoxSelectExpense); Controls.Add(comboBoxSelectIncome); Controls.Add(buttonSelectFilePath); Controls.Add(textBoxFilePath); Controls.Add(label5); Controls.Add(label4); Controls.Add(label3); Controls.Add(label2); Controls.Add(label1); Name = "FormMoneyReport"; StartPosition = FormStartPosition.CenterParent; Text = "Отчет по движению денег"; ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private Label label2; private Label label3; private Label label4; private Label label5; private TextBox textBoxFilePath; private Button buttonSelectFilePath; private ComboBox comboBoxSelectIncome; private ComboBox comboBoxSelectExpense; private DateTimePicker dateTimePickerStart; private DateTimePicker dateTimePickerEnd; private Button buttonMakeReport; } }