106 lines
4.3 KiB
C#
106 lines
4.3 KiB
C#
namespace VisionBuilder.UI.Windows.Dialogs
|
|
{
|
|
partial class RecipeSelectionDialog
|
|
{
|
|
/// <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()
|
|
{
|
|
listView1 = new ListView();
|
|
btnCancel = new MaterialSkin.Controls.MaterialRaisedButton();
|
|
btnCreateNewRecipe = new MaterialSkin.Controls.MaterialRaisedButton();
|
|
SuspendLayout();
|
|
//
|
|
// listView1
|
|
//
|
|
listView1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|
listView1.BorderStyle = BorderStyle.None;
|
|
listView1.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
listView1.Location = new Point(8, 32);
|
|
listView1.MultiSelect = false;
|
|
listView1.Name = "listView1";
|
|
listView1.Size = new Size(944, 575);
|
|
listView1.TabIndex = 4;
|
|
listView1.UseCompatibleStateImageBehavior = false;
|
|
listView1.MouseClick += listView1_MouseClick;
|
|
//
|
|
// btnCancel
|
|
//
|
|
btnCancel.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
btnCancel.Depth = 0;
|
|
btnCancel.DrawBorder = true;
|
|
btnCancel.Font = new Font("Segoe UI Semibold", 12F, FontStyle.Bold, GraphicsUnit.Point, 204);
|
|
btnCancel.Icon = null;
|
|
btnCancel.Location = new Point(792, 624);
|
|
btnCancel.MouseState = MaterialSkin.MouseState.HOVER;
|
|
btnCancel.Name = "btnCancel";
|
|
btnCancel.Primary = false;
|
|
btnCancel.Size = new Size(160, 48);
|
|
btnCancel.TabIndex = 5;
|
|
btnCancel.Text = "cancel";
|
|
btnCancel.UseVisualStyleBackColor = true;
|
|
btnCancel.Click += btnCancel_Click;
|
|
//
|
|
// btnCreateNewRecipe
|
|
//
|
|
btnCreateNewRecipe.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
btnCreateNewRecipe.Depth = 0;
|
|
btnCreateNewRecipe.DrawBorder = true;
|
|
btnCreateNewRecipe.Font = new Font("Segoe UI Semibold", 12F, FontStyle.Bold, GraphicsUnit.Point, 204);
|
|
btnCreateNewRecipe.Icon = null;
|
|
btnCreateNewRecipe.Location = new Point(8, 624);
|
|
btnCreateNewRecipe.MouseState = MaterialSkin.MouseState.HOVER;
|
|
btnCreateNewRecipe.Name = "btnCreateNewRecipe";
|
|
btnCreateNewRecipe.Primary = false;
|
|
btnCreateNewRecipe.Size = new Size(160, 48);
|
|
btnCreateNewRecipe.TabIndex = 6;
|
|
btnCreateNewRecipe.Text = "Create New Recipe";
|
|
btnCreateNewRecipe.UseVisualStyleBackColor = true;
|
|
btnCreateNewRecipe.Visible = false;
|
|
btnCreateNewRecipe.Click += btnCreateNewRecipe_Click;
|
|
//
|
|
// RecipeSelectionDialog
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(962, 688);
|
|
Controls.Add(btnCreateNewRecipe);
|
|
Controls.Add(btnCancel);
|
|
Controls.Add(listView1);
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "RecipeSelectionDialog";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "RecipeSelectionDialog";
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ListView listView1;
|
|
private MaterialSkin.Controls.MaterialRaisedButton btnCancel;
|
|
private MaterialSkin.Controls.MaterialRaisedButton btnCreateNewRecipe;
|
|
}
|
|
} |