Files
PCK-Studio/PCK-Studio/Forms/Additional-Popups/AddPropertyPrompt.Designer.cs
2023-07-21 12:31:09 +02:00

104 lines
4.3 KiB
C#

namespace PckStudio.Forms.Additional_Popups
{
partial class AddPropertyPrompt
{
/// <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.Windows.Forms.Label label1;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddPropertyPrompt));
System.Windows.Forms.Label label2;
this.keyTextBox = new System.Windows.Forms.TextBox();
this.valueTextBox = new System.Windows.Forms.TextBox();
this.saveButton = new System.Windows.Forms.Button();
label1 = new System.Windows.Forms.Label();
label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
resources.ApplyResources(label1, "label1");
label1.ForeColor = System.Drawing.Color.White;
label1.Name = "label1";
//
// label2
//
resources.ApplyResources(label2, "label2");
label2.ForeColor = System.Drawing.Color.White;
label2.Name = "label2";
//
// keyTextBox
//
this.keyTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(13)))), ((int)(((byte)(13)))));
this.keyTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.keyTextBox.ForeColor = System.Drawing.SystemColors.Window;
resources.ApplyResources(this.keyTextBox, "keyTextBox");
this.keyTextBox.Name = "keyTextBox";
//
// valueTextBox
//
this.valueTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(13)))), ((int)(((byte)(13)))));
this.valueTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.valueTextBox.ForeColor = System.Drawing.SystemColors.Window;
resources.ApplyResources(this.valueTextBox, "valueTextBox");
this.valueTextBox.Name = "valueTextBox";
//
// saveButton
//
resources.ApplyResources(this.saveButton, "saveButton");
this.saveButton.ForeColor = System.Drawing.Color.White;
this.saveButton.Name = "saveButton";
this.saveButton.UseVisualStyleBackColor = true;
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
//
// AddPropertyPrompt
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.saveButton);
this.Controls.Add(label2);
this.Controls.Add(label1);
this.Controls.Add(this.valueTextBox);
this.Controls.Add(this.keyTextBox);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AddPropertyPrompt";
this.Resizable = false;
this.ShadowType = MetroFramework.Forms.MetroFormShadowType.DropShadow;
this.Style = MetroFramework.MetroColorStyle.Black;
this.Theme = MetroFramework.MetroThemeStyle.Dark;
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox keyTextBox;
private System.Windows.Forms.TextBox valueTextBox;
private System.Windows.Forms.Button saveButton;
}
}