namespace YourNamespace.Forms { partial class FormTicket { /// /// 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() { this.labelPassenger = new System.Windows.Forms.Label(); this.labelFlight = new System.Windows.Forms.Label(); this.labelDateBuy = new System.Windows.Forms.Label(); this.labelTicketPrice = new System.Windows.Forms.Label(); this.comboBoxPassenger = new System.Windows.Forms.ComboBox(); this.comboBoxFlight = new System.Windows.Forms.ComboBox(); this.dateTimePickerDateBuy = new System.Windows.Forms.DateTimePicker(); this.numericUpDownTicketPrice = new System.Windows.Forms.NumericUpDown(); this.buttonSave = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTicketPrice)).BeginInit(); this.SuspendLayout(); // // labelPassenger // this.labelPassenger.AutoSize = true; this.labelPassenger.Location = new System.Drawing.Point(12, 22); this.labelPassenger.Name = "labelPassenger"; this.labelPassenger.Size = new System.Drawing.Size(63, 13); this.labelPassenger.TabIndex = 0; this.labelPassenger.Text = "Пассажир:"; // // labelFlight // this.labelFlight.AutoSize = true; this.labelFlight.Location = new System.Drawing.Point(12, 58); this.labelFlight.Name = "labelFlight"; this.labelFlight.Size = new System.Drawing.Size(37, 13); this.labelFlight.TabIndex = 1; this.labelFlight.Text = "Рейс:"; // // labelDateBuy // this.labelDateBuy.AutoSize = true; this.labelDateBuy.Location = new System.Drawing.Point(12, 94); this.labelDateBuy.Name = "labelDateBuy"; this.labelDateBuy.Size = new System.Drawing.Size(80, 13); this.labelDateBuy.TabIndex = 2; this.labelDateBuy.Text = "Дата покупки:"; // // labelTicketPrice // this.labelTicketPrice.AutoSize = true; this.labelTicketPrice.Location = new System.Drawing.Point(12, 130); this.labelTicketPrice.Name = "labelTicketPrice"; this.labelTicketPrice.Size = new System.Drawing.Size(74, 13); this.labelTicketPrice.TabIndex = 3; this.labelTicketPrice.Text = "Цена билета:"; // // comboBoxPassenger // this.comboBoxPassenger.FormattingEnabled = true; this.comboBoxPassenger.Location = new System.Drawing.Point(111, 19); this.comboBoxPassenger.Name = "comboBoxPassenger"; this.comboBoxPassenger.Size = new System.Drawing.Size(200, 21); this.comboBoxPassenger.TabIndex = 4; // // comboBoxFlight // this.comboBoxFlight.FormattingEnabled = true; this.comboBoxFlight.Location = new System.Drawing.Point(111, 55); this.comboBoxFlight.Name = "comboBoxFlight"; this.comboBoxFlight.Size = new System.Drawing.Size(200, 21); this.comboBoxFlight.TabIndex = 5; // // dateTimePickerDateBuy // this.dateTimePickerDateBuy.Location = new System.Drawing.Point(111, 91); this.dateTimePickerDateBuy.Name = "dateTimePickerDateBuy"; this.dateTimePickerDateBuy.Size = new System.Drawing.Size(200, 20); this.dateTimePickerDateBuy.TabIndex = 6; // // numericUpDownTicketPrice // this.numericUpDownTicketPrice.Location = new System.Drawing.Point(111, 128); this.numericUpDownTicketPrice.Name = "numericUpDownTicketPrice"; this.numericUpDownTicketPrice.Size = new System.Drawing.Size(200, 20); this.numericUpDownTicketPrice.TabIndex = 7; // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(155, 164); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(75, 23); this.buttonSave.TabIndex = 8; this.buttonSave.Text = "Сохранить"; this.buttonSave.UseVisualStyleBackColor = true; this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(236, 164); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 9; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // FormTicket // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(324, 201); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonSave); this.Controls.Add(this.numericUpDownTicketPrice); this.Controls.Add(this.dateTimePickerDateBuy); this.Controls.Add(this.comboBoxFlight); this.Controls.Add(this.comboBoxPassenger); this.Controls.Add(this.labelTicketPrice); this.Controls.Add(this.labelDateBuy); this.Controls.Add(this.labelFlight); this.Controls.Add(this.labelPassenger); this.Name = "FormTicket"; this.Text = "Редактирование билета"; ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTicketPrice)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label labelPassenger; private System.Windows.Forms.Label labelFlight; private System.Windows.Forms.Label labelDateBuy; private System.Windows.Forms.Label labelTicketPrice; private System.Windows.Forms.ComboBox comboBoxPassenger; private System.Windows.Forms.ComboBox comboBoxFlight; private System.Windows.Forms.DateTimePicker dateTimePickerDateBuy; private System.Windows.Forms.NumericUpDown numericUpDownTicketPrice; private System.Windows.Forms.Button buttonSave; private System.Windows.Forms.Button buttonCancel; } }