SUBD/CarRent/FormCreateRental.Designer.cs

191 lines
6.6 KiB
C#

namespace CarRent
{
partial class FormCreateRental
{
/// <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.comboBoxClient = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.comboBoxCar = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.dateTimePickerStart = new System.Windows.Forms.DateTimePicker();
this.dateTimePickerEnd = new System.Windows.Forms.DateTimePicker();
this.label4 = new System.Windows.Forms.Label();
this.textBoxCost = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonAdd = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// comboBoxClient
//
this.comboBoxClient.FormattingEnabled = true;
this.comboBoxClient.Location = new System.Drawing.Point(12, 27);
this.comboBoxClient.Name = "comboBoxClient";
this.comboBoxClient.Size = new System.Drawing.Size(121, 23);
this.comboBoxClient.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(49, 15);
this.label1.TabIndex = 1;
this.label1.Text = "Клиент:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 53);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(79, 15);
this.label2.TabIndex = 3;
this.label2.Text = "Автомобиль:";
//
// comboBoxCar
//
this.comboBoxCar.FormattingEnabled = true;
this.comboBoxCar.Location = new System.Drawing.Point(12, 71);
this.comboBoxCar.Name = "comboBoxCar";
this.comboBoxCar.Size = new System.Drawing.Size(121, 23);
this.comboBoxCar.TabIndex = 2;
this.comboBoxCar.SelectedIndexChanged += new System.EventHandler(this.comboBoxCar_SelectedIndexChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 97);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(121, 15);
this.label3.TabIndex = 5;
this.label3.Text = "Дата начала аренды:";
//
// dateTimePickerStart
//
this.dateTimePickerStart.Location = new System.Drawing.Point(12, 115);
this.dateTimePickerStart.Name = "dateTimePickerStart";
this.dateTimePickerStart.Size = new System.Drawing.Size(121, 23);
this.dateTimePickerStart.TabIndex = 6;
this.dateTimePickerStart.ValueChanged += new System.EventHandler(this.dateTimePickerStart_ValueChanged);
//
// dateTimePickerEnd
//
this.dateTimePickerEnd.Location = new System.Drawing.Point(12, 159);
this.dateTimePickerEnd.Name = "dateTimePickerEnd";
this.dateTimePickerEnd.Size = new System.Drawing.Size(121, 23);
this.dateTimePickerEnd.TabIndex = 8;
this.dateTimePickerEnd.ValueChanged += new System.EventHandler(this.dateTimePickerEnd_ValueChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(12, 141);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(142, 15);
this.label4.TabIndex = 7;
this.label4.Text = "Дата окончания аренды:";
//
// textBoxCost
//
this.textBoxCost.Location = new System.Drawing.Point(12, 203);
this.textBoxCost.Name = "textBoxCost";
this.textBoxCost.ReadOnly = true;
this.textBoxCost.Size = new System.Drawing.Size(121, 23);
this.textBoxCost.TabIndex = 9;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(12, 185);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(107, 15);
this.label5.TabIndex = 10;
this.label5.Text = "Общая стоимость";
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(155, 202);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 25;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// buttonAdd
//
this.buttonAdd.Location = new System.Drawing.Point(155, 159);
this.buttonAdd.Name = "buttonAdd";
this.buttonAdd.Size = new System.Drawing.Size(75, 23);
this.buttonAdd.TabIndex = 24;
this.buttonAdd.Text = "Добавить";
this.buttonAdd.UseVisualStyleBackColor = true;
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
//
// FormCreateRental
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(240, 247);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonAdd);
this.Controls.Add(this.label5);
this.Controls.Add(this.textBoxCost);
this.Controls.Add(this.dateTimePickerEnd);
this.Controls.Add(this.label4);
this.Controls.Add(this.dateTimePickerStart);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.comboBoxCar);
this.Controls.Add(this.label1);
this.Controls.Add(this.comboBoxClient);
this.Name = "FormCreateRental";
this.Text = "Новая сделка";
this.Load += new System.EventHandler(this.FormCreateRental_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private ComboBox comboBoxClient;
private Label label1;
private Label label2;
private ComboBox comboBoxCar;
private Label label3;
private DateTimePicker dateTimePickerStart;
private DateTimePicker dateTimePickerEnd;
private Label label4;
private TextBox textBoxCost;
private Label label5;
private Button buttonCancel;
private Button buttonAdd;
}
}