before candybox editor update
This commit is contained in:
138
Plugins/CandyboxPlugin/Forms/FAUFInput.Designer.cs
generated
Normal file
138
Plugins/CandyboxPlugin/Forms/FAUFInput.Designer.cs
generated
Normal file
@@ -0,0 +1,138 @@
|
||||
|
||||
namespace Lindt.Candybox.RecipeSelector
|
||||
{
|
||||
partial class FAUFInput
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||||
this.btnStart = new MaterialSkin.Controls.MaterialRaisedButton();
|
||||
this.lblBlisterName = new System.Windows.Forms.Label();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.Location = new System.Drawing.Point(88, 72);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(256, 256);
|
||||
this.pictureBox1.TabIndex = 0;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.BackColor = System.Drawing.Color.White;
|
||||
this.label1.Location = new System.Drawing.Point(88, 48);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(89, 15);
|
||||
this.label1.TabIndex = 1;
|
||||
this.label1.Text = "Selected blister:";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.BackColor = System.Drawing.Color.White;
|
||||
this.label2.Location = new System.Drawing.Point(88, 368);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(84, 15);
|
||||
this.label2.TabIndex = 2;
|
||||
this.label2.Text = "FAUF Number:";
|
||||
//
|
||||
// textBox1
|
||||
//
|
||||
this.textBox1.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
||||
this.textBox1.Location = new System.Drawing.Point(88, 392);
|
||||
this.textBox1.Name = "textBox1";
|
||||
this.textBox1.Size = new System.Drawing.Size(256, 39);
|
||||
this.textBox1.TabIndex = 3;
|
||||
this.textBox1.Text = "0";
|
||||
this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
|
||||
//
|
||||
// btnStart
|
||||
//
|
||||
this.btnStart.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.btnStart.Cursor = System.Windows.Forms.Cursors.Hand;
|
||||
this.btnStart.Depth = 0;
|
||||
this.btnStart.DrawBorder = true;
|
||||
this.btnStart.Icon = null;
|
||||
this.btnStart.Location = new System.Drawing.Point(88, 472);
|
||||
this.btnStart.MouseState = MaterialSkin.MouseState.HOVER;
|
||||
this.btnStart.Name = "btnStart";
|
||||
this.btnStart.Primary = true;
|
||||
this.btnStart.Size = new System.Drawing.Size(256, 64);
|
||||
this.btnStart.TabIndex = 5;
|
||||
this.btnStart.Text = "Start";
|
||||
this.btnStart.UseVisualStyleBackColor = true;
|
||||
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
|
||||
//
|
||||
// lblBlisterName
|
||||
//
|
||||
this.lblBlisterName.AutoSize = true;
|
||||
this.lblBlisterName.BackColor = System.Drawing.Color.White;
|
||||
this.lblBlisterName.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
|
||||
this.lblBlisterName.Location = new System.Drawing.Point(304, 48);
|
||||
this.lblBlisterName.Name = "lblBlisterName";
|
||||
this.lblBlisterName.Size = new System.Drawing.Size(39, 15);
|
||||
this.lblBlisterName.TabIndex = 7;
|
||||
this.lblBlisterName.Text = "label3";
|
||||
this.lblBlisterName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
||||
//
|
||||
// FAUFInput
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(440, 567);
|
||||
this.Controls.Add(this.lblBlisterName);
|
||||
this.Controls.Add(this.btnStart);
|
||||
this.Controls.Add(this.textBox1);
|
||||
this.Controls.Add(this.label2);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.pictureBox1);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "FAUFInput";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.PictureBox pictureBox1;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.Label label2;
|
||||
private System.Windows.Forms.TextBox textBox1;
|
||||
private MaterialSkin.Controls.MaterialRaisedButton btnStart;
|
||||
private System.Windows.Forms.Label lblBlisterName;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user