119 lines
4.0 KiB
C#
119 lines
4.0 KiB
C#
namespace ProjectHotel.Forms
|
|
{
|
|
partial class FormHotel
|
|
{
|
|
/// <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();
|
|
textBoxHotelName = new TextBox();
|
|
textBoxHotelAddress = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(15, 41);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(122, 15);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "Название гостиницы";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(15, 93);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(46, 15);
|
|
label2.TabIndex = 1;
|
|
label2.Text = "Адресс";
|
|
//
|
|
// textBoxHotelName
|
|
//
|
|
textBoxHotelName.Location = new Point(168, 38);
|
|
textBoxHotelName.Name = "textBoxHotelName";
|
|
textBoxHotelName.Size = new Size(390, 23);
|
|
textBoxHotelName.TabIndex = 2;
|
|
//
|
|
// textBoxHotelAddress
|
|
//
|
|
textBoxHotelAddress.Location = new Point(168, 90);
|
|
textBoxHotelAddress.Name = "textBoxHotelAddress";
|
|
textBoxHotelAddress.Size = new Size(387, 23);
|
|
textBoxHotelAddress.TabIndex = 3;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(105, 136);
|
|
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(385, 136);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 5;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormHotel
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(570, 167);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxHotelAddress);
|
|
Controls.Add(textBoxHotelName);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Name = "FormHotel";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Гостиница";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label label2;
|
|
private TextBox textBoxHotelName;
|
|
private TextBox textBoxHotelAddress;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
|
|
}
|
|
} |