- Recovery

This commit is contained in:
2022-10-09 12:27:47 +09:00
parent f53695b228
commit 9052652122
30 changed files with 1112 additions and 219 deletions

View File

@@ -47,6 +47,8 @@ namespace Mitria_Minecraft_Launcher
this.button_Report = new System.Windows.Forms.Button();
this.button_Open_LauncherDirectory = new System.Windows.Forms.Button();
this.button_Setup = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.comboBox_selectServer = new System.Windows.Forms.ComboBox();
this.groupBox_MinecraftRun.SuspendLayout();
this.groupBox_Progress.SuspendLayout();
this.groupBox_LauncherSettings.SuspendLayout();
@@ -107,7 +109,7 @@ namespace Mitria_Minecraft_Launcher
this.groupBox_MinecraftRun.Controls.Add(this.textBox_MinecraftPlayerName);
this.groupBox_MinecraftRun.Controls.Add(this.button_Run);
this.groupBox_MinecraftRun.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.groupBox_MinecraftRun.Location = new System.Drawing.Point(262, 260);
this.groupBox_MinecraftRun.Location = new System.Drawing.Point(262, 280);
this.groupBox_MinecraftRun.Name = "groupBox_MinecraftRun";
this.groupBox_MinecraftRun.Size = new System.Drawing.Size(300, 90);
this.groupBox_MinecraftRun.TabIndex = 0;
@@ -126,7 +128,7 @@ namespace Mitria_Minecraft_Launcher
this.groupBox_Progress.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.groupBox_Progress.Location = new System.Drawing.Point(12, 12);
this.groupBox_Progress.Name = "groupBox_Progress";
this.groupBox_Progress.Size = new System.Drawing.Size(550, 240);
this.groupBox_Progress.Size = new System.Drawing.Size(550, 220);
this.groupBox_Progress.TabIndex = 0;
this.groupBox_Progress.TabStop = false;
this.groupBox_Progress.Text = "Progress";
@@ -186,7 +188,7 @@ namespace Mitria_Minecraft_Launcher
this.groupBox_LauncherSettings.Controls.Add(this.button_Open_LauncherDirectory);
this.groupBox_LauncherSettings.Controls.Add(this.button_Setup);
this.groupBox_LauncherSettings.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.groupBox_LauncherSettings.Location = new System.Drawing.Point(12, 260);
this.groupBox_LauncherSettings.Location = new System.Drawing.Point(12, 280);
this.groupBox_LauncherSettings.Name = "groupBox_LauncherSettings";
this.groupBox_LauncherSettings.Size = new System.Drawing.Size(244, 90);
this.groupBox_LauncherSettings.TabIndex = 0;
@@ -245,12 +247,38 @@ namespace Mitria_Minecraft_Launcher
this.button_Setup.UseVisualStyleBackColor = false;
this.button_Setup.Click += new System.EventHandler(this.button_Setup_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.label1.Location = new System.Drawing.Point(220, 250);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 3;
this.label1.Text = "Server";
//
// comboBox_selectServer
//
this.comboBox_selectServer.DropDownHeight = 150;
this.comboBox_selectServer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_selectServer.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.comboBox_selectServer.Font = new System.Drawing.Font("맑은 고딕", 9F);
this.comboBox_selectServer.FormattingEnabled = true;
this.comboBox_selectServer.IntegralHeight = false;
this.comboBox_selectServer.Location = new System.Drawing.Point(270, 247);
this.comboBox_selectServer.Name = "comboBox_selectServer";
this.comboBox_selectServer.Size = new System.Drawing.Size(292, 23);
this.comboBox_selectServer.TabIndex = 4;
this.comboBox_selectServer.SelectedIndexChanged += new System.EventHandler(this.comboBox_selectServer_SelectedIndexChanged);
//
// LauncherForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(57)))), ((int)(((byte)(63)))));
this.ClientSize = new System.Drawing.Size(574, 360);
this.ClientSize = new System.Drawing.Size(574, 381);
this.Controls.Add(this.comboBox_selectServer);
this.Controls.Add(this.label1);
this.Controls.Add(this.groupBox_LauncherSettings);
this.Controls.Add(this.groupBox_Progress);
this.Controls.Add(this.groupBox_MinecraftRun);
@@ -267,6 +295,7 @@ namespace Mitria_Minecraft_Launcher
this.groupBox_Progress.PerformLayout();
this.groupBox_LauncherSettings.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
@@ -289,6 +318,8 @@ namespace Mitria_Minecraft_Launcher
private System.Windows.Forms.Button button_Report;
private System.Windows.Forms.Button button_Open_LauncherDirectory;
private System.Windows.Forms.Button button_Open_GameDirectory;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox comboBox_selectServer;
}
}