117 lines
3.9 KiB
C#
117 lines
3.9 KiB
C#
namespace GasStation.Forms
|
|
{
|
|
partial class FormGasman
|
|
{
|
|
/// <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();
|
|
labelNumber = new Label();
|
|
textBoxName = new TextBox();
|
|
textBoxNumber = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(52, 44);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(31, 15);
|
|
labelName.TabIndex = 0;
|
|
labelName.Text = "Имя";
|
|
//
|
|
// labelNumber
|
|
//
|
|
labelNumber.AutoSize = true;
|
|
labelNumber.Location = new Point(34, 89);
|
|
labelNumber.Name = "labelNumber";
|
|
labelNumber.Size = new Size(101, 15);
|
|
labelNumber.TabIndex = 1;
|
|
labelNumber.Text = "Номер телефона";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(141, 41);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(153, 23);
|
|
textBoxName.TabIndex = 2;
|
|
//
|
|
// textBoxNumber
|
|
//
|
|
textBoxNumber.Location = new Point(141, 86);
|
|
textBoxNumber.Name = "textBoxNumber";
|
|
textBoxNumber.Size = new Size(153, 23);
|
|
textBoxNumber.TabIndex = 3;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(52, 169);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(75, 23);
|
|
buttonSave.TabIndex = 4;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(219, 169);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 5;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormGasman
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(421, 248);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxNumber);
|
|
Controls.Add(textBoxName);
|
|
Controls.Add(labelNumber);
|
|
Controls.Add(labelName);
|
|
Name = "FormGasman";
|
|
Text = "Заправщик";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelName;
|
|
private Label labelNumber;
|
|
private TextBox textBoxName;
|
|
private TextBox textBoxNumber;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |