mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-02 09:56:47 +00:00
110 lines
3.7 KiB
C#
110 lines
3.7 KiB
C#
namespace PckStudio
|
|
{
|
|
partial class MipMapPrompt
|
|
{
|
|
/// <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(MipMapPrompt));
|
|
this.TextLabel = new System.Windows.Forms.Label();
|
|
this.CancelBtn = new System.Windows.Forms.Button();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// TextLabel
|
|
//
|
|
resources.ApplyResources(this.TextLabel, "TextLabel");
|
|
this.TextLabel.ForeColor = System.Drawing.Color.White;
|
|
this.TextLabel.Name = "TextLabel";
|
|
//
|
|
// CancelButton
|
|
//
|
|
resources.ApplyResources(this.CancelBtn, "CancelButton");
|
|
this.CancelBtn.ForeColor = System.Drawing.Color.White;
|
|
this.CancelBtn.Name = "CancelButton";
|
|
this.CancelBtn.UseVisualStyleBackColor = true;
|
|
this.CancelBtn.Click += new System.EventHandler(this.CancelButton_Click);
|
|
//
|
|
// button1
|
|
//
|
|
resources.ApplyResources(this.button1, "button1");
|
|
this.button1.ForeColor = System.Drawing.Color.White;
|
|
this.button1.Name = "button1";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.OKBtn_Click);
|
|
//
|
|
// numericUpDown1
|
|
//
|
|
resources.ApplyResources(this.numericUpDown1, "numericUpDown1");
|
|
this.numericUpDown1.Maximum = new decimal(new int[] {
|
|
4,
|
|
0,
|
|
0,
|
|
0});
|
|
this.numericUpDown1.Minimum = new decimal(new int[] {
|
|
1,
|
|
0,
|
|
0,
|
|
0});
|
|
this.numericUpDown1.Name = "numericUpDown1";
|
|
this.numericUpDown1.Value = new decimal(new int[] {
|
|
1,
|
|
0,
|
|
0,
|
|
0});
|
|
//
|
|
// MipMapPrompt
|
|
//
|
|
this.AcceptButton = this.CancelBtn;
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.numericUpDown1);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.CancelBtn);
|
|
this.Controls.Add(this.TextLabel);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "MipMapPrompt";
|
|
this.Resizable = false;
|
|
this.ShadowType = MetroFramework.Forms.MetroFormShadowType.DropShadow;
|
|
this.Style = MetroFramework.MetroColorStyle.Silver;
|
|
this.Theme = MetroFramework.MetroThemeStyle.Dark;
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
public System.Windows.Forms.Button CancelBtn;
|
|
public System.Windows.Forms.Label TextLabel;
|
|
public System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.NumericUpDown numericUpDown1;
|
|
}
|
|
} |