153 lines
5.2 KiB
C#

namespace ProjectFamilyBudget.Forms
{
partial class FormIncome
{
/// <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()
{
label3 = new Label();
buttonSave = new Button();
buttonCansel = new Button();
label4 = new Label();
label5 = new Label();
textBoxName = new TextBox();
textBoxCategory = new TextBox();
label1 = new Label();
comboBoxIncomeType = new ComboBox();
SuspendLayout();
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(3, 149);
label3.Name = "label3";
label3.Size = new Size(63, 15);
label3.TabIndex = 2;
label3.Text = "Категория";
//
// buttonSave
//
buttonSave.Location = new Point(7, 222);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(102, 41);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCansel
//
buttonCansel.Location = new Point(191, 222);
buttonCansel.Name = "buttonCansel";
buttonCansel.Size = new Size(97, 41);
buttonCansel.TabIndex = 7;
buttonCansel.Text = "Отмена";
buttonCansel.UseVisualStyleBackColor = true;
buttonCansel.Click += buttonCansel_Click;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(1368, 563);
label4.Name = "label4";
label4.Size = new Size(38, 15);
label4.TabIndex = 8;
label4.Text = "label4";
//
// label5
//
label5.AutoSize = true;
label5.Location = new Point(7, 28);
label5.Name = "label5";
label5.Size = new Size(59, 15);
label5.TabIndex = 9;
label5.Text = "Название";
//
// textBoxName
//
textBoxName.Location = new Point(101, 25);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(187, 23);
textBoxName.TabIndex = 10;
//
// textBoxCategory
//
textBoxCategory.Location = new Point(101, 146);
textBoxCategory.Name = "textBoxCategory";
textBoxCategory.Size = new Size(187, 23);
textBoxCategory.TabIndex = 11;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(-2, 85);
label1.Name = "label1";
label1.Size = new Size(68, 15);
label1.TabIndex = 12;
label1.Text = "Тип дохода";
//
// comboBoxIncomeType
//
comboBoxIncomeType.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxIncomeType.FormattingEnabled = true;
comboBoxIncomeType.Location = new Point(101, 82);
comboBoxIncomeType.Name = "comboBoxIncomeType";
comboBoxIncomeType.Size = new Size(187, 23);
comboBoxIncomeType.TabIndex = 13;
//
// FormIncome
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(300, 286);
Controls.Add(comboBoxIncomeType);
Controls.Add(label1);
Controls.Add(textBoxCategory);
Controls.Add(textBoxName);
Controls.Add(label5);
Controls.Add(label4);
Controls.Add(buttonCansel);
Controls.Add(buttonSave);
Controls.Add(label3);
Name = "FormIncome";
StartPosition = FormStartPosition.CenterParent;
Text = "Доход";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label3;
private Button buttonSave;
private Button buttonCansel;
private Label label4;
private Label label5;
private TextBox textBoxName;
private TextBox textBoxCategory;
private Label label1;
private ComboBox comboBoxIncomeType;
}
}