141 lines
4.8 KiB
C#

namespace ProjectFamilyBudget.Forms
{
partial class FormExpense
{
/// <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()
{
label5 = new Label();
textBoxName = new TextBox();
label3 = new Label();
buttonSave = new Button();
buttonCansel = new Button();
textBoxCategory = new TextBox();
label1 = new Label();
checkedListBoxType = new CheckedListBox();
SuspendLayout();
//
// label5
//
label5.AutoSize = true;
label5.Location = new Point(23, 24);
label5.Name = "label5";
label5.Size = new Size(59, 15);
label5.TabIndex = 10;
label5.Text = "Название";
//
// textBoxName
//
textBoxName.Location = new Point(101, 21);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(188, 23);
textBoxName.TabIndex = 11;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(19, 196);
label3.Name = "label3";
label3.Size = new Size(63, 15);
label3.TabIndex = 16;
label3.Text = "Категория";
//
// buttonSave
//
buttonSave.Location = new Point(12, 254);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(102, 41);
buttonSave.TabIndex = 18;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCansel
//
buttonCansel.Location = new Point(192, 254);
buttonCansel.Name = "buttonCansel";
buttonCansel.Size = new Size(97, 41);
buttonCansel.TabIndex = 19;
buttonCansel.Text = "Отмена";
buttonCansel.UseVisualStyleBackColor = true;
buttonCansel.Click += buttonCansel_Click;
//
// textBoxCategory
//
textBoxCategory.Location = new Point(101, 193);
textBoxCategory.Name = "textBoxCategory";
textBoxCategory.Size = new Size(188, 23);
textBoxCategory.TabIndex = 20;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(8, 88);
label1.Name = "label1";
label1.Size = new Size(74, 15);
label1.TabIndex = 21;
label1.Text = "Тип расхода";
//
// checkedListBoxType
//
checkedListBoxType.FormattingEnabled = true;
checkedListBoxType.Location = new Point(101, 88);
checkedListBoxType.Name = "checkedListBoxType";
checkedListBoxType.Size = new Size(188, 58);
checkedListBoxType.TabIndex = 22;
//
// FormExpense
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(301, 307);
Controls.Add(checkedListBoxType);
Controls.Add(label1);
Controls.Add(textBoxCategory);
Controls.Add(buttonCansel);
Controls.Add(buttonSave);
Controls.Add(label3);
Controls.Add(textBoxName);
Controls.Add(label5);
Name = "FormExpense";
StartPosition = FormStartPosition.CenterParent;
Text = "Расход";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label5;
private TextBox textBoxName;
private Label label3;
private Button buttonSave;
private Button buttonCansel;
private TextBox textBoxCategory;
private Label label1;
private CheckedListBox checkedListBoxType;
}
}