PIbd-23_Nevaeva_K.A._Travel.../TravelCompany/TravelCompany/FormCreateOrder.Designer.cs
2023-02-20 08:36:19 +04:00

145 lines
6.0 KiB
C#

namespace TravelCompany
{
partial class FormCreateOrder
{
/// <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()
{
this.labelSum = new System.Windows.Forms.Label();
this.labelTravel = new System.Windows.Forms.Label();
this.labelCount = new System.Windows.Forms.Label();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.comboBoxTravel = new System.Windows.Forms.ComboBox();
this.textBoxCount = new System.Windows.Forms.TextBox();
this.textBoxSum = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// labelSum
//
this.labelSum.AutoSize = true;
this.labelSum.Location = new System.Drawing.Point(82, 151);
this.labelSum.Name = "labelSum";
this.labelSum.Size = new System.Drawing.Size(71, 25);
this.labelSum.TabIndex = 0;
this.labelSum.Text = "Сумма:";
//
// labelTravel
//
this.labelTravel.AutoSize = true;
this.labelTravel.Location = new System.Drawing.Point(32, 30);
this.labelTravel.Name = "labelTravel";
this.labelTravel.Size = new System.Drawing.Size(121, 25);
this.labelTravel.TabIndex = 1;
this.labelTravel.Text = "Путешествие:";
//
// labelCount
//
this.labelCount.AutoSize = true;
this.labelCount.Location = new System.Drawing.Point(42, 94);
this.labelCount.Name = "labelCount";
this.labelCount.Size = new System.Drawing.Size(111, 25);
this.labelCount.TabIndex = 2;
this.labelCount.Text = "Количество:";
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(468, 207);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(112, 34);
this.buttonCancel.TabIndex = 4;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(338, 207);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(112, 34);
this.buttonSave.TabIndex = 3;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click_1);
//
// comboBoxTravel
//
this.comboBoxTravel.FormattingEnabled = true;
this.comboBoxTravel.Location = new System.Drawing.Point(169, 27);
this.comboBoxTravel.Name = "comboBoxTravel";
this.comboBoxTravel.Size = new System.Drawing.Size(365, 33);
this.comboBoxTravel.TabIndex = 5;
this.comboBoxTravel.SelectedIndexChanged += new System.EventHandler(this.comboBoxTravel_SelectedIndexChanged);
//
// textBoxCount
//
this.textBoxCount.Location = new System.Drawing.Point(169, 91);
this.textBoxCount.Name = "textBoxCount";
this.textBoxCount.Size = new System.Drawing.Size(365, 31);
this.textBoxCount.TabIndex = 6;
this.textBoxCount.TextChanged += new System.EventHandler(this.textBoxCount_TextChanged);
//
// textBoxSum
//
this.textBoxSum.Location = new System.Drawing.Point(169, 151);
this.textBoxSum.Name = "textBoxSum";
this.textBoxSum.ReadOnly = true;
this.textBoxSum.Size = new System.Drawing.Size(365, 31);
this.textBoxSum.TabIndex = 7;
//
// FormCreateOrder
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(605, 256);
this.Controls.Add(this.textBoxSum);
this.Controls.Add(this.textBoxCount);
this.Controls.Add(this.comboBoxTravel);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.labelCount);
this.Controls.Add(this.labelTravel);
this.Controls.Add(this.labelSum);
this.Name = "FormCreateOrder";
this.Text = "FormCreateOrder";
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label labelSum;
private Label labelTravel;
private Label labelCount;
private Button buttonCancel;
private Button buttonSave;
private ComboBox comboBoxTravel;
private TextBox textBoxCount;
private TextBox textBoxSum;
}
}