143 lines
4.6 KiB
C#
143 lines
4.6 KiB
C#
|
namespace CarRent
|
|||
|
{
|
|||
|
partial class FormCreateBranch
|
|||
|
{
|
|||
|
/// <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.textBoxPhoneNumber = new System.Windows.Forms.TextBox();
|
|||
|
this.textBoxAddress = new System.Windows.Forms.TextBox();
|
|||
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|||
|
this.label3 = new System.Windows.Forms.Label();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|||
|
this.buttonAdd = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// textBoxPhoneNumber
|
|||
|
//
|
|||
|
this.textBoxPhoneNumber.Location = new System.Drawing.Point(12, 115);
|
|||
|
this.textBoxPhoneNumber.Name = "textBoxPhoneNumber";
|
|||
|
this.textBoxPhoneNumber.Size = new System.Drawing.Size(145, 23);
|
|||
|
this.textBoxPhoneNumber.TabIndex = 25;
|
|||
|
//
|
|||
|
// textBoxAddress
|
|||
|
//
|
|||
|
this.textBoxAddress.Location = new System.Drawing.Point(12, 71);
|
|||
|
this.textBoxAddress.Name = "textBoxAddress";
|
|||
|
this.textBoxAddress.Size = new System.Drawing.Size(145, 23);
|
|||
|
this.textBoxAddress.TabIndex = 24;
|
|||
|
//
|
|||
|
// textBoxName
|
|||
|
//
|
|||
|
this.textBoxName.Location = new System.Drawing.Point(12, 27);
|
|||
|
this.textBoxName.Name = "textBoxName";
|
|||
|
this.textBoxName.Size = new System.Drawing.Size(145, 23);
|
|||
|
this.textBoxName.TabIndex = 23;
|
|||
|
//
|
|||
|
// 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(104, 15);
|
|||
|
this.label3.TabIndex = 22;
|
|||
|
this.label3.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(43, 15);
|
|||
|
this.label2.TabIndex = 21;
|
|||
|
this.label2.Text = "Адрес:";
|
|||
|
//
|
|||
|
// 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(62, 15);
|
|||
|
this.label1.TabIndex = 20;
|
|||
|
this.label1.Text = "Название:";
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
this.buttonCancel.Location = new System.Drawing.Point(176, 114);
|
|||
|
this.buttonCancel.Name = "buttonCancel";
|
|||
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.buttonCancel.TabIndex = 27;
|
|||
|
this.buttonCancel.Text = "Отмена";
|
|||
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
this.buttonAdd.Location = new System.Drawing.Point(176, 71);
|
|||
|
this.buttonAdd.Name = "buttonAdd";
|
|||
|
this.buttonAdd.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.buttonAdd.TabIndex = 26;
|
|||
|
this.buttonAdd.Text = "Добавить";
|
|||
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
|
|||
|
//
|
|||
|
// FormCreateBranch
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(263, 155);
|
|||
|
this.Controls.Add(this.buttonCancel);
|
|||
|
this.Controls.Add(this.buttonAdd);
|
|||
|
this.Controls.Add(this.textBoxPhoneNumber);
|
|||
|
this.Controls.Add(this.textBoxAddress);
|
|||
|
this.Controls.Add(this.textBoxName);
|
|||
|
this.Controls.Add(this.label3);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "FormCreateBranch";
|
|||
|
this.Text = "Добавление филиала";
|
|||
|
this.Load += new System.EventHandler(this.FormCreateBranch_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private TextBox textBoxPhoneNumber;
|
|||
|
private TextBox textBoxAddress;
|
|||
|
private TextBox textBoxName;
|
|||
|
private Label label3;
|
|||
|
private Label label2;
|
|||
|
private Label label1;
|
|||
|
private Button buttonCancel;
|
|||
|
private Button buttonAdd;
|
|||
|
}
|
|||
|
}
|