120 lines
4.1 KiB
C#

namespace ProjectFamilyBudget.Forms
{
partial class FormFamily
{
/// <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()
{
label1 = new Label();
label2 = new Label();
textBoxFamilyName = new TextBox();
comboBoxFamilyType = new ComboBox();
buttonSave = new Button();
buttonCansel = new Button();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 17);
label1.Name = "label1";
label1.Size = new Size(96, 15);
label1.TabIndex = 0;
label1.Text = "Название семьи";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 55);
label2.Name = "label2";
label2.Size = new Size(64, 15);
label2.TabIndex = 1;
label2.Text = "Тип семьи";
//
// textBoxFamilyName
//
textBoxFamilyName.Location = new Point(114, 14);
textBoxFamilyName.Name = "textBoxFamilyName";
textBoxFamilyName.Size = new Size(190, 23);
textBoxFamilyName.TabIndex = 2;
//
// comboBoxFamilyType
//
comboBoxFamilyType.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxFamilyType.FormattingEnabled = true;
comboBoxFamilyType.Location = new Point(114, 55);
comboBoxFamilyType.Name = "comboBoxFamilyType";
comboBoxFamilyType.Size = new Size(190, 23);
comboBoxFamilyType.TabIndex = 3;
//
// buttonSave
//
buttonSave.Location = new Point(12, 102);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(122, 30);
buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCansel
//
buttonCansel.Location = new Point(187, 102);
buttonCansel.Name = "buttonCansel";
buttonCansel.Size = new Size(117, 30);
buttonCansel.TabIndex = 5;
buttonCansel.Text = "Отмена";
buttonCansel.UseVisualStyleBackColor = true;
buttonCansel.Click += buttonCansel_Click;
//
// FormFamily
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(338, 144);
Controls.Add(buttonCansel);
Controls.Add(buttonSave);
Controls.Add(comboBoxFamilyType);
Controls.Add(textBoxFamilyName);
Controls.Add(label2);
Controls.Add(label1);
Name = "FormFamily";
StartPosition = FormStartPosition.CenterParent;
Text = "Семья";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private TextBox textBoxFamilyName;
private ComboBox comboBoxFamilyType;
private Button buttonSave;
private Button buttonCansel;
}
}