SushiBarBase/SushiBar/SushiBarView/FormComponent.Designer.cs
2024-02-09 17:38:25 +04:00

98 lines
3.2 KiB
C#

namespace SushiBarView
{
partial class FormComponent
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormComponent));
label1 = new Label();
textBoxName = new TextBox();
textBoxCost = new TextBox();
label2 = new Label();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// label1
//
resources.ApplyResources(label1, "label1");
label1.Name = "label1";
//
// textBoxName
//
resources.ApplyResources(textBoxName, "textBoxName");
textBoxName.Name = "textBoxName";
//
// textBoxCost
//
resources.ApplyResources(textBoxCost, "textBoxCost");
textBoxCost.Name = "textBoxCost";
//
// label2
//
resources.ApplyResources(label2, "label2");
label2.Name = "label2";
//
// buttonSave
//
resources.ApplyResources(buttonSave, "buttonSave");
buttonSave.Name = "buttonSave";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
resources.ApplyResources(buttonCancel, "buttonCancel");
buttonCancel.Name = "buttonCancel";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// FormComponent
//
resources.ApplyResources(this, "$this");
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxCost);
Controls.Add(label2);
Controls.Add(textBoxName);
Controls.Add(label1);
Name = "FormComponent";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private TextBox textBoxName;
private TextBox textBoxCost;
private Label label2;
private Button buttonSave;
private Button buttonCancel;
}
}