164 lines
7.3 KiB
C#
164 lines
7.3 KiB
C#
namespace HelloWorld
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|
this.textBoxUsername = new System.Windows.Forms.TextBox();
|
|
this.labelUsername = new System.Windows.Forms.Label();
|
|
this.labelUUID = new System.Windows.Forms.Label();
|
|
this.textBoxUUID = new System.Windows.Forms.TextBox();
|
|
this.btnGenerateUUID = new System.Windows.Forms.Button();
|
|
this.checkUsername = new System.Windows.Forms.CheckBox();
|
|
this.checkUUID = new System.Windows.Forms.CheckBox();
|
|
this.btnPlay = new System.Windows.Forms.Button();
|
|
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// textBoxUsername
|
|
//
|
|
this.textBoxUsername.Location = new System.Drawing.Point(12, 26);
|
|
this.textBoxUsername.Name = "textBoxUsername";
|
|
this.textBoxUsername.Size = new System.Drawing.Size(166, 20);
|
|
this.textBoxUsername.TabIndex = 2;
|
|
//
|
|
// labelUsername
|
|
//
|
|
this.labelUsername.AutoSize = true;
|
|
this.labelUsername.Location = new System.Drawing.Point(12, 10);
|
|
this.labelUsername.Name = "labelUsername";
|
|
this.labelUsername.Size = new System.Drawing.Size(55, 13);
|
|
this.labelUsername.TabIndex = 3;
|
|
this.labelUsername.Text = "Username";
|
|
//
|
|
// labelUUID
|
|
//
|
|
this.labelUUID.AutoSize = true;
|
|
this.labelUUID.Location = new System.Drawing.Point(12, 94);
|
|
this.labelUUID.Name = "labelUUID";
|
|
this.labelUUID.Size = new System.Drawing.Size(67, 13);
|
|
this.labelUUID.TabIndex = 5;
|
|
this.labelUUID.Text = "8 Digit UUID";
|
|
this.toolTip1.SetToolTip(this.labelUUID, "This is used to store player inventory data,\r\nas well as the username on servers." +
|
|
"\r\nIf it is different than the last one you used\r\nyou wont have your inventory.");
|
|
this.labelUUID.Click += new System.EventHandler(this.label2_Click);
|
|
//
|
|
// textBoxUUID
|
|
//
|
|
this.textBoxUUID.Location = new System.Drawing.Point(12, 110);
|
|
this.textBoxUUID.Name = "textBoxUUID";
|
|
this.textBoxUUID.Size = new System.Drawing.Size(166, 20);
|
|
this.textBoxUUID.TabIndex = 4;
|
|
this.textBoxUUID.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
|
|
//
|
|
// btnGenerateUUID
|
|
//
|
|
this.btnGenerateUUID.Location = new System.Drawing.Point(184, 110);
|
|
this.btnGenerateUUID.Name = "btnGenerateUUID";
|
|
this.btnGenerateUUID.Size = new System.Drawing.Size(62, 20);
|
|
this.btnGenerateUUID.TabIndex = 6;
|
|
this.btnGenerateUUID.Text = "Generate";
|
|
this.btnGenerateUUID.UseVisualStyleBackColor = true;
|
|
this.btnGenerateUUID.Click += new System.EventHandler(this.button1_Click_1);
|
|
//
|
|
// checkUsername
|
|
//
|
|
this.checkUsername.AutoSize = true;
|
|
this.checkUsername.Location = new System.Drawing.Point(12, 52);
|
|
this.checkUsername.Name = "checkUsername";
|
|
this.checkUsername.Size = new System.Drawing.Size(57, 17);
|
|
this.checkUsername.TabIndex = 7;
|
|
this.checkUsername.Text = "Save?";
|
|
this.checkUsername.UseVisualStyleBackColor = true;
|
|
this.checkUsername.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
|
|
//
|
|
// checkUUID
|
|
//
|
|
this.checkUUID.AutoSize = true;
|
|
this.checkUUID.Location = new System.Drawing.Point(12, 136);
|
|
this.checkUUID.Name = "checkUUID";
|
|
this.checkUUID.Size = new System.Drawing.Size(57, 17);
|
|
this.checkUUID.TabIndex = 8;
|
|
this.checkUUID.Text = "Save?";
|
|
this.checkUUID.UseVisualStyleBackColor = true;
|
|
this.checkUUID.CheckedChanged += new System.EventHandler(this.checkUUID_CheckedChanged);
|
|
//
|
|
// btnPlay
|
|
//
|
|
this.btnPlay.Location = new System.Drawing.Point(285, 26);
|
|
this.btnPlay.Name = "btnPlay";
|
|
this.btnPlay.Size = new System.Drawing.Size(104, 104);
|
|
this.btnPlay.TabIndex = 9;
|
|
this.btnPlay.Text = "Play!";
|
|
this.btnPlay.UseVisualStyleBackColor = true;
|
|
this.btnPlay.Click += new System.EventHandler(this.button2_Click);
|
|
//
|
|
// toolTip1
|
|
//
|
|
this.toolTip1.AutoPopDelay = 10000;
|
|
this.toolTip1.InitialDelay = 200;
|
|
this.toolTip1.ReshowDelay = 100;
|
|
this.toolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
|
|
this.toolTip1.ToolTipTitle = "UUID";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(404, 161);
|
|
this.Controls.Add(this.btnPlay);
|
|
this.Controls.Add(this.checkUUID);
|
|
this.Controls.Add(this.checkUsername);
|
|
this.Controls.Add(this.btnGenerateUUID);
|
|
this.Controls.Add(this.labelUUID);
|
|
this.Controls.Add(this.textBoxUUID);
|
|
this.Controls.Add(this.labelUsername);
|
|
this.Controls.Add(this.textBoxUsername);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "Form1";
|
|
this.Text = "IveBeenAlone\'s Hytale Launcher";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.TextBox textBoxUsername;
|
|
private System.Windows.Forms.Label labelUsername;
|
|
private System.Windows.Forms.Label labelUUID;
|
|
private System.Windows.Forms.TextBox textBoxUUID;
|
|
private System.Windows.Forms.Button btnGenerateUUID;
|
|
private System.Windows.Forms.CheckBox checkUsername;
|
|
private System.Windows.Forms.CheckBox checkUUID;
|
|
private System.Windows.Forms.Button btnPlay;
|
|
private System.Windows.Forms.ToolTip toolTip1;
|
|
}
|
|
}
|
|
|