169 lines
6.0 KiB
C#
Raw Normal View History

namespace ProjectFamilyBudget.Forms
{
partial class FormPeople
{
/// <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();
textBoxPeopleName = new TextBox();
label2 = new Label();
comboBoxFamily = new ComboBox();
label3 = new Label();
numericUpDownAge = new NumericUpDown();
buttonSave = new Button();
buttonCansel = new Button();
label4 = new Label();
comboBoxMember = new ComboBox();
((System.ComponentModel.ISupportInitialize)numericUpDownAge).BeginInit();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(29, 27);
label1.Name = "label1";
label1.Size = new Size(31, 15);
label1.TabIndex = 0;
label1.Text = "Имя";
//
// textBoxPeopleName
//
textBoxPeopleName.Location = new Point(86, 24);
textBoxPeopleName.Name = "textBoxPeopleName";
textBoxPeopleName.Size = new Size(121, 23);
textBoxPeopleName.TabIndex = 1;
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(18, 124);
label2.Name = "label2";
label2.Size = new Size(42, 15);
label2.TabIndex = 2;
label2.Text = "Семья";
//
// comboBoxFamily
//
comboBoxFamily.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxFamily.Location = new Point(86, 121);
comboBoxFamily.Name = "comboBoxFamily";
comboBoxFamily.Size = new Size(121, 23);
comboBoxFamily.TabIndex = 3;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(10, 76);
label3.Name = "label3";
label3.Size = new Size(50, 15);
label3.TabIndex = 4;
label3.Text = "Возраст";
//
// numericUpDownAge
//
numericUpDownAge.Location = new Point(87, 74);
numericUpDownAge.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
numericUpDownAge.Name = "numericUpDownAge";
numericUpDownAge.Size = new Size(120, 23);
numericUpDownAge.TabIndex = 5;
numericUpDownAge.Value = new decimal(new int[] { 1, 0, 0, 0 });
//
// buttonSave
//
buttonSave.Location = new Point(10, 251);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(90, 45);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCansel
//
buttonCansel.Location = new Point(117, 251);
buttonCansel.Name = "buttonCansel";
buttonCansel.Size = new Size(90, 43);
buttonCansel.TabIndex = 7;
buttonCansel.Text = "Отмена";
buttonCansel.UseVisualStyleBackColor = true;
buttonCansel.Click += buttonCansel_Click;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(10, 171);
label4.Name = "label4";
label4.Size = new Size(72, 15);
label4.TabIndex = 8;
label4.Text = "Член семьи";
//
// comboBoxMember
//
comboBoxMember.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxMember.FormattingEnabled = true;
comboBoxMember.Location = new Point(86, 168);
comboBoxMember.Name = "comboBoxMember";
comboBoxMember.Size = new Size(121, 23);
comboBoxMember.TabIndex = 9;
//
// FormPeople
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(232, 308);
Controls.Add(comboBoxMember);
Controls.Add(label4);
Controls.Add(buttonCansel);
Controls.Add(buttonSave);
Controls.Add(numericUpDownAge);
Controls.Add(label3);
Controls.Add(comboBoxFamily);
Controls.Add(label2);
Controls.Add(textBoxPeopleName);
Controls.Add(label1);
Name = "FormPeople";
StartPosition = FormStartPosition.CenterParent;
Text = "Человек";
((System.ComponentModel.ISupportInitialize)numericUpDownAge).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private TextBox textBoxPeopleName;
private Label label2;
private ComboBox comboBoxFamily;
private Label label3;
private NumericUpDown numericUpDownAge;
private Button buttonSave;
private Button buttonCansel;
private Label label4;
private ComboBox comboBoxMember;
}
}