PIbd-21_Bakalskaya_E.D._Sus.../SushiBar/Shops/FormShop.Designer.cs
2024-03-10 23:03:51 +04:00

150 lines
5.5 KiB
C#

namespace SushiBarView.Shops
{
partial class FormShop
{
/// <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()
{
buttonCancel = new Button();
buttonSave = new Button();
textBoxAddress = new TextBox();
textBoxName = new TextBox();
labelAddress = new Label();
labelName = new Label();
dateTimePickerDateOpening = new DateTimePicker();
labelDateOpening = new Label();
SuspendLayout();
//
// buttonCancel
//
buttonCancel.Anchor = AnchorStyles.None;
buttonCancel.Location = new Point(421, 203);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(116, 39);
buttonCancel.TabIndex = 11;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
//
// buttonSave
//
buttonSave.Anchor = AnchorStyles.None;
buttonSave.Location = new Point(182, 203);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(116, 39);
buttonSave.TabIndex = 10;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
//
// textBoxAddress
//
textBoxAddress.Anchor = AnchorStyles.None;
textBoxAddress.Location = new Point(182, 86);
textBoxAddress.Name = "textBoxAddress";
textBoxAddress.Size = new Size(355, 27);
textBoxAddress.TabIndex = 9;
//
// textBoxName
//
textBoxName.Anchor = AnchorStyles.None;
textBoxName.Location = new Point(182, 20);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(355, 27);
textBoxName.TabIndex = 8;
//
// labelAddress
//
labelAddress.Anchor = AnchorStyles.None;
labelAddress.AutoSize = true;
labelAddress.Font = new Font("Candara", 12F);
labelAddress.Location = new Point(34, 86);
labelAddress.Margin = new Padding(4, 0, 4, 0);
labelAddress.Name = "labelAddress";
labelAddress.Size = new Size(63, 24);
labelAddress.TabIndex = 7;
labelAddress.Text = "Адрес";
//
// labelName
//
labelName.Anchor = AnchorStyles.None;
labelName.AutoSize = true;
labelName.Font = new Font("Candara", 12F);
labelName.Location = new Point(18, 23);
labelName.Margin = new Padding(4, 0, 4, 0);
labelName.Name = "labelName";
labelName.Size = new Size(93, 24);
labelName.TabIndex = 6;
labelName.Text = "Название";
//
// dateTimePickerDateOpening
//
dateTimePickerDateOpening.Location = new Point(182, 152);
dateTimePickerDateOpening.Name = "dateTimePickerDateOpening";
dateTimePickerDateOpening.Size = new Size(355, 27);
dateTimePickerDateOpening.TabIndex = 12;
//
// labelDateOpening
//
labelDateOpening.Anchor = AnchorStyles.None;
labelDateOpening.AutoSize = true;
labelDateOpening.Font = new Font("Candara", 12F);
labelDateOpening.Location = new Point(18, 155);
labelDateOpening.Margin = new Padding(4, 0, 4, 0);
labelDateOpening.Name = "labelDateOpening";
labelDateOpening.Size = new Size(140, 24);
labelDateOpening.TabIndex = 13;
labelDateOpening.Text = "Дата открытия";
//
// FormShop
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(571, 273);
Controls.Add(labelDateOpening);
Controls.Add(dateTimePickerDateOpening);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxAddress);
Controls.Add(textBoxName);
Controls.Add(labelAddress);
Controls.Add(labelName);
Name = "FormShop";
Text = "Магазин";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonCancel;
private Button buttonSave;
private TextBox textBoxAddress;
private TextBox textBoxName;
private Label labelAddress;
private Label labelName;
private DateTimePicker dateTimePickerDateOpening;
private Label labelDateOpening;
}
}