86 lines
2.8 KiB
C#
86 lines
2.8 KiB
C#
namespace PizzaExpress_Client
|
|
{
|
|
partial class RecipeSearch
|
|
{
|
|
/// <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()
|
|
{
|
|
listBox1 = new ListBox();
|
|
cancelBtn = new Button();
|
|
confirmBtn = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// listBox1
|
|
//
|
|
listBox1.FormattingEnabled = true;
|
|
listBox1.ItemHeight = 15;
|
|
listBox1.Location = new Point(12, 12);
|
|
listBox1.Name = "listBox1";
|
|
listBox1.Size = new Size(337, 379);
|
|
listBox1.TabIndex = 0;
|
|
//
|
|
// cancelBtn
|
|
//
|
|
cancelBtn.Location = new Point(12, 397);
|
|
cancelBtn.Name = "cancelBtn";
|
|
cancelBtn.Size = new Size(140, 31);
|
|
cancelBtn.TabIndex = 1;
|
|
cancelBtn.Text = "Annulla";
|
|
cancelBtn.UseVisualStyleBackColor = true;
|
|
//
|
|
// confirmBtn
|
|
//
|
|
confirmBtn.Location = new Point(158, 397);
|
|
confirmBtn.Name = "confirmBtn";
|
|
confirmBtn.Size = new Size(191, 31);
|
|
confirmBtn.TabIndex = 2;
|
|
confirmBtn.Text = "OK";
|
|
confirmBtn.UseVisualStyleBackColor = true;
|
|
//
|
|
// RecipeSearch
|
|
//
|
|
AcceptButton = confirmBtn;
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
CancelButton = cancelBtn;
|
|
ClientSize = new Size(361, 440);
|
|
Controls.Add(confirmBtn);
|
|
Controls.Add(cancelBtn);
|
|
Controls.Add(listBox1);
|
|
FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
Name = "RecipeSearch";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Ricerca ingredienti";
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ListBox listBox1;
|
|
private Button cancelBtn;
|
|
private Button confirmBtn;
|
|
}
|
|
} |