117 lines
3.8 KiB
C#
117 lines
3.8 KiB
C#
namespace SushiBarView
|
|
{
|
|
partial class FormBuyer
|
|
{
|
|
/// <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()
|
|
{
|
|
label1 = new Label();
|
|
label2 = new Label();
|
|
textBoxName = new TextBox();
|
|
dateTimePicker = new DateTimePicker();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(12, 20);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(34, 15);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "Имя:";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(12, 51);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(93, 15);
|
|
label2.TabIndex = 1;
|
|
label2.Text = "Дата рождения:";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(116, 12);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(208, 23);
|
|
textBoxName.TabIndex = 2;
|
|
//
|
|
// dateTimePicker
|
|
//
|
|
dateTimePicker.Location = new Point(116, 45);
|
|
dateTimePicker.Name = "dateTimePicker";
|
|
dateTimePicker.Size = new Size(208, 23);
|
|
dateTimePicker.TabIndex = 3;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(287, 84);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(77, 30);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(204, 84);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(83, 30);
|
|
buttonSave.TabIndex = 6;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// FormBuyer
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(375, 130);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(dateTimePicker);
|
|
Controls.Add(textBoxName);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Name = "FormBuyer";
|
|
Text = "Покупатель";
|
|
Load += FormBuyer_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label label2;
|
|
private TextBox textBoxName;
|
|
private DateTimePicker dateTimePicker;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |