mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 14:47:26 +00:00
83 lines
3.2 KiB
C#
83 lines
3.2 KiB
C#
namespace PckStudio
|
|
{
|
|
partial class RenamePrompt
|
|
{
|
|
/// <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(RenamePrompt));
|
|
this.TextLabel = new System.Windows.Forms.Label();
|
|
this.OKButton = new System.Windows.Forms.Button();
|
|
this.InputTextBox = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// TextLabel
|
|
//
|
|
resources.ApplyResources(this.TextLabel, "TextLabel");
|
|
this.TextLabel.ForeColor = System.Drawing.Color.White;
|
|
this.TextLabel.Name = "TextLabel";
|
|
//
|
|
// OKButton
|
|
//
|
|
resources.ApplyResources(this.OKButton, "OKButton");
|
|
this.OKButton.ForeColor = System.Drawing.Color.White;
|
|
this.OKButton.Name = "OKButton";
|
|
this.OKButton.UseVisualStyleBackColor = true;
|
|
this.OKButton.Click += new System.EventHandler(this.OKBtn_Click);
|
|
//
|
|
// InputTextBox
|
|
//
|
|
resources.ApplyResources(this.InputTextBox, "InputTextBox");
|
|
this.InputTextBox.Name = "InputTextBox";
|
|
this.InputTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.InputTextBox_KeyDown);
|
|
//
|
|
// RenamePrompt
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.InputTextBox);
|
|
this.Controls.Add(this.OKButton);
|
|
this.Controls.Add(this.TextLabel);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "RenamePrompt";
|
|
this.Resizable = false;
|
|
this.ShadowType = MetroFramework.Forms.MetroFormShadowType.DropShadow;
|
|
this.Style = MetroFramework.MetroColorStyle.Silver;
|
|
this.Theme = MetroFramework.MetroThemeStyle.Dark;
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
public System.Windows.Forms.Button OKButton;
|
|
public System.Windows.Forms.Label TextLabel;
|
|
private System.Windows.Forms.TextBox InputTextBox;
|
|
}
|
|
} |