SUBD_TransportCompany/TransportCompany/TransportCompanyView/FormPoint.Designer.cs

118 lines
4.0 KiB
C#

namespace TransportCompanyView
{
partial class FormPoint
{
/// <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()
{
labelName = new Label();
textBoxName = new TextBox();
textBoxAddress = new TextBox();
labelAddress = new Label();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// labelName
//
labelName.AutoSize = true;
labelName.Location = new Point(11, 9);
labelName.Name = "labelName";
labelName.Size = new Size(45, 20);
labelName.TabIndex = 0;
labelName.Text = "Название:";
//
// textBoxName
//
textBoxName.Location = new Point(98, 9);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(366, 27);
textBoxName.TabIndex = 1;
//
// textBoxPhoneNumber
//
textBoxAddress.Location = new Point(98, 43);
textBoxAddress.Name = "textBoxAddress";
textBoxAddress.Size = new Size(366, 27);
textBoxAddress.TabIndex = 3;
//
// labelPhoneNumber
//
labelAddress.AutoSize = true;
labelAddress.Location = new Point(11, 43);
labelAddress.Name = "labelPhoneNumber";
labelAddress.Size = new Size(69, 20);
labelAddress.TabIndex = 2;
labelAddress.Text = "Адрес";
//
// buttonSave
//
buttonSave.Location = new Point(171, 91);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(130, 40);
buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(328, 91);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(136, 40);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// FormDriver
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(478, 141);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxAddress);
Controls.Add(labelAddress);
Controls.Add(textBoxName);
Controls.Add(labelName);
Name = "FormPoint";
Text = "Пункт";
Load += FormCargo_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelName;
private TextBox textBoxName;
private TextBox textBoxAddress;
private Label labelAddress;
private Button buttonSave;
private Button buttonCancel;
}
}