namespace ProjectAirline.Forms { partial class FormPassenger { /// /// 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() { checkedListBoxType = new CheckedListBox(); label1 = new Label(); textBoxFirstname = new TextBox(); textBoxLastname = new TextBox(); label2 = new Label(); label3 = new Label(); label4 = new Label(); dateTimePickerBorn = new DateTimePicker(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // checkedListBoxType // checkedListBoxType.FormattingEnabled = true; checkedListBoxType.Location = new Point(173, 27); checkedListBoxType.Name = "checkedListBoxType"; checkedListBoxType.Size = new Size(205, 114); checkedListBoxType.TabIndex = 0; // // label1 // label1.AutoSize = true; label1.Location = new Point(39, 55); label1.Name = "label1"; label1.Size = new Size(115, 20); label1.TabIndex = 2; label1.Text = "Тип пассажира"; // // textBoxFirstname // textBoxFirstname.Location = new Point(173, 176); textBoxFirstname.Name = "textBoxFirstname"; textBoxFirstname.Size = new Size(205, 27); textBoxFirstname.TabIndex = 3; // // textBoxLastname // textBoxLastname.Location = new Point(174, 234); textBoxLastname.Name = "textBoxLastname"; textBoxLastname.Size = new Size(210, 27); textBoxLastname.TabIndex = 4; // // label2 // label2.AutoSize = true; label2.Location = new Point(63, 180); label2.Name = "label2"; label2.Size = new Size(39, 20); label2.TabIndex = 5; label2.Text = "Имя"; // // label3 // label3.AutoSize = true; label3.Location = new Point(52, 237); label3.Name = "label3"; label3.Size = new Size(73, 20); label3.TabIndex = 6; label3.Text = "Фамилия"; // // label4 // label4.AutoSize = true; label4.Location = new Point(38, 303); label4.Name = "label4"; label4.Size = new Size(116, 20); label4.TabIndex = 7; label4.Text = "Дата рождения"; // // dateTimePickerBorn // dateTimePickerBorn.Location = new Point(173, 303); dateTimePickerBorn.Name = "dateTimePickerBorn"; dateTimePickerBorn.Size = new Size(224, 27); dateTimePickerBorn.TabIndex = 8; // // buttonSave // buttonSave.Location = new Point(47, 364); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(115, 60); buttonSave.TabIndex = 9; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(267, 365); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(111, 59); buttonCancel.TabIndex = 10; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FormPassenger // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(417, 464); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(dateTimePickerBorn); Controls.Add(label4); Controls.Add(label3); Controls.Add(label2); Controls.Add(textBoxLastname); Controls.Add(textBoxFirstname); Controls.Add(label1); Controls.Add(checkedListBoxType); Name = "FormPassenger"; Text = "Пассажир"; ResumeLayout(false); PerformLayout(); } #endregion private CheckedListBox checkedListBoxType; private Label label1; private TextBox textBoxFirstname; private TextBox textBoxLastname; private Label label2; private Label label3; private Label label4; private DateTimePicker dateTimePickerBorn; private Button buttonSave; private Button buttonCancel; } }