mirror of
https://github.com/Brawl345/customizemii.git
synced 2024-11-10 18:35:10 +01:00
102 lines
4.0 KiB
C#
102 lines
4.0 KiB
C#
|
namespace CustomizeMii
|
|||
|
{
|
|||
|
partial class CustomizeMii_InputBox
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Erforderliche Designervariable.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Verwendete Ressourcen bereinigen.
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Vom Windows Form-Designer generierter Code
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Erforderliche Methode für die Designerunterstützung.
|
|||
|
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.tbInput = new System.Windows.Forms.TextBox();
|
|||
|
this.lbInfo = new System.Windows.Forms.Label();
|
|||
|
this.btnOK = new System.Windows.Forms.Button();
|
|||
|
this.btnExit = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// tbInput
|
|||
|
//
|
|||
|
this.tbInput.Location = new System.Drawing.Point(7, 34);
|
|||
|
this.tbInput.MaxLength = 3;
|
|||
|
this.tbInput.Name = "tbInput";
|
|||
|
this.tbInput.Size = new System.Drawing.Size(222, 20);
|
|||
|
this.tbInput.TabIndex = 0;
|
|||
|
//
|
|||
|
// lbInfo
|
|||
|
//
|
|||
|
this.lbInfo.AutoSize = true;
|
|||
|
this.lbInfo.Location = new System.Drawing.Point(4, 9);
|
|||
|
this.lbInfo.Name = "lbInfo";
|
|||
|
this.lbInfo.Size = new System.Drawing.Size(225, 13);
|
|||
|
this.lbInfo.TabIndex = 1;
|
|||
|
this.lbInfo.Text = "Please enter \"45e\" to create the Common-Key";
|
|||
|
//
|
|||
|
// btnOK
|
|||
|
//
|
|||
|
this.btnOK.Location = new System.Drawing.Point(7, 62);
|
|||
|
this.btnOK.Name = "btnOK";
|
|||
|
this.btnOK.Size = new System.Drawing.Size(108, 23);
|
|||
|
this.btnOK.TabIndex = 2;
|
|||
|
this.btnOK.Text = "OK";
|
|||
|
this.btnOK.UseVisualStyleBackColor = true;
|
|||
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|||
|
//
|
|||
|
// btnExit
|
|||
|
//
|
|||
|
this.btnExit.Location = new System.Drawing.Point(121, 62);
|
|||
|
this.btnExit.Name = "btnExit";
|
|||
|
this.btnExit.Size = new System.Drawing.Size(108, 23);
|
|||
|
this.btnExit.TabIndex = 3;
|
|||
|
this.btnExit.Text = "Exit";
|
|||
|
this.btnExit.UseVisualStyleBackColor = true;
|
|||
|
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
|
|||
|
//
|
|||
|
// CustomizeMii_InputBox
|
|||
|
//
|
|||
|
this.AcceptButton = this.btnOK;
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.CancelButton = this.btnExit;
|
|||
|
this.ClientSize = new System.Drawing.Size(238, 92);
|
|||
|
this.Controls.Add(this.btnExit);
|
|||
|
this.Controls.Add(this.btnOK);
|
|||
|
this.Controls.Add(this.lbInfo);
|
|||
|
this.Controls.Add(this.tbInput);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|||
|
this.Name = "CustomizeMii_InputBox";
|
|||
|
this.ShowInTaskbar = false;
|
|||
|
this.Text = "InputBox";
|
|||
|
this.Load += new System.EventHandler(this.CustomizeMii_InputBox_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.TextBox tbInput;
|
|||
|
private System.Windows.Forms.Label lbInfo;
|
|||
|
private System.Windows.Forms.Button btnOK;
|
|||
|
private System.Windows.Forms.Button btnExit;
|
|||
|
}
|
|||
|
}
|