AMain.Designer.cs 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.IO;
  5. using System.IO.Compression;
  6. using System.Net;
  7. using System.Windows.Forms;
  8. using System.Drawing;
  9. namespace Launcher
  10. {
  11. partial class AMain
  12. {
  13. /// <summary>
  14. /// Required designer variable.
  15. /// </summary>
  16. private System.ComponentModel.IContainer components = null;
  17. /// <summary>
  18. /// Clean up any resources being used.
  19. /// </summary>
  20. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  21. protected override void Dispose(bool disposing)
  22. {
  23. if (disposing && (components != null))
  24. {
  25. components.Dispose();
  26. }
  27. base.Dispose(disposing);
  28. }
  29. #region Windows Form Designer generated code
  30. /// <summary>
  31. /// Required method for Designer support - do not modify
  32. /// the contents of this method with the code editor.
  33. /// </summary>
  34. private void InitializeComponent()
  35. {
  36. this.components = new System.ComponentModel.Container();
  37. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AMain));
  38. this.ActionLabel = new System.Windows.Forms.Label();
  39. this.SpeedLabel = new System.Windows.Forms.Label();
  40. this.InterfaceTimer = new System.Windows.Forms.Timer(this.components);
  41. this.Movement_panel = new System.Windows.Forms.Panel();
  42. this.Name_label = new System.Windows.Forms.Label();
  43. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  44. this.Config_pb = new System.Windows.Forms.PictureBox();
  45. this.Close_pb = new System.Windows.Forms.PictureBox();
  46. this.panel1 = new System.Windows.Forms.Panel();
  47. this.Button_CheckUpdate = new System.Windows.Forms.Button();
  48. this.ResolutionComboBox = new System.Windows.Forms.ComboBox();
  49. this.label10 = new System.Windows.Forms.Label();
  50. this.serverlistbox = new System.Windows.Forms.ComboBox();
  51. this.Windowed_CheckBox = new System.Windows.Forms.CheckBox();
  52. this.label1 = new System.Windows.Forms.Label();
  53. this.FullScreen_CheckBox = new System.Windows.Forms.CheckBox();
  54. this.FPSLimit_CheckBox = new System.Windows.Forms.CheckBox();
  55. this.Version_label = new System.Windows.Forms.Label();
  56. this.CurrentFile_label = new System.Windows.Forms.Label();
  57. this.CurrentPercent_label = new System.Windows.Forms.Label();
  58. this.TotalPercent_label = new System.Windows.Forms.Label();
  59. this.Credit_label = new System.Windows.Forms.Label();
  60. this.ProgTotalEnd_pb = new System.Windows.Forms.PictureBox();
  61. this.ProgEnd_pb = new System.Windows.Forms.PictureBox();
  62. this.ProgressCurrent_pb = new System.Windows.Forms.PictureBox();
  63. this.TotalProg_pb = new System.Windows.Forms.PictureBox();
  64. this.Launch_pb = new System.Windows.Forms.PictureBox();
  65. this.linkLabel1 = new System.Windows.Forms.LinkLabel();
  66. this.panel2 = new System.Windows.Forms.Panel();
  67. this.linkLabel5 = new System.Windows.Forms.LinkLabel();
  68. this.linkLabel4 = new System.Windows.Forms.LinkLabel();
  69. this.label2 = new System.Windows.Forms.Label();
  70. this.linkLabel3 = new System.Windows.Forms.LinkLabel();
  71. this.linkLabel2 = new System.Windows.Forms.LinkLabel();
  72. this.linkLabel6 = new System.Windows.Forms.LinkLabel();
  73. this.Movement_panel.SuspendLayout();
  74. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  75. ((System.ComponentModel.ISupportInitialize)(this.Config_pb)).BeginInit();
  76. ((System.ComponentModel.ISupportInitialize)(this.Close_pb)).BeginInit();
  77. this.panel1.SuspendLayout();
  78. ((System.ComponentModel.ISupportInitialize)(this.ProgTotalEnd_pb)).BeginInit();
  79. ((System.ComponentModel.ISupportInitialize)(this.ProgEnd_pb)).BeginInit();
  80. ((System.ComponentModel.ISupportInitialize)(this.ProgressCurrent_pb)).BeginInit();
  81. ((System.ComponentModel.ISupportInitialize)(this.TotalProg_pb)).BeginInit();
  82. ((System.ComponentModel.ISupportInitialize)(this.Launch_pb)).BeginInit();
  83. this.panel2.SuspendLayout();
  84. this.SuspendLayout();
  85. //
  86. // ActionLabel
  87. //
  88. this.ActionLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  89. this.ActionLabel.BackColor = System.Drawing.Color.Transparent;
  90. this.ActionLabel.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  91. this.ActionLabel.ForeColor = System.Drawing.Color.Gray;
  92. this.ActionLabel.Location = new System.Drawing.Point(439, 466);
  93. this.ActionLabel.Name = "ActionLabel";
  94. this.ActionLabel.Size = new System.Drawing.Size(173, 17);
  95. this.ActionLabel.TabIndex = 4;
  96. this.ActionLabel.Text = "1423MB/2000MB";
  97. this.ActionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  98. this.ActionLabel.Visible = false;
  99. this.ActionLabel.Click += new System.EventHandler(this.ActionLabel_Click);
  100. //
  101. // SpeedLabel
  102. //
  103. this.SpeedLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  104. this.SpeedLabel.BackColor = System.Drawing.Color.Transparent;
  105. this.SpeedLabel.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  106. this.SpeedLabel.ForeColor = System.Drawing.Color.Gray;
  107. this.SpeedLabel.Location = new System.Drawing.Point(347, 504);
  108. this.SpeedLabel.Name = "SpeedLabel";
  109. this.SpeedLabel.RightToLeft = System.Windows.Forms.RightToLeft.No;
  110. this.SpeedLabel.Size = new System.Drawing.Size(265, 15);
  111. this.SpeedLabel.TabIndex = 13;
  112. this.SpeedLabel.Text = "Speed";
  113. this.SpeedLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
  114. this.SpeedLabel.Visible = false;
  115. //
  116. // InterfaceTimer
  117. //
  118. this.InterfaceTimer.Enabled = true;
  119. this.InterfaceTimer.Interval = 50;
  120. this.InterfaceTimer.Tick += new System.EventHandler(this.InterfaceTimer_Tick);
  121. //
  122. // Movement_panel
  123. //
  124. this.Movement_panel.BackColor = System.Drawing.Color.Transparent;
  125. this.Movement_panel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  126. this.Movement_panel.Controls.Add(this.Name_label);
  127. this.Movement_panel.Controls.Add(this.pictureBox1);
  128. this.Movement_panel.Controls.Add(this.Config_pb);
  129. this.Movement_panel.Controls.Add(this.Close_pb);
  130. this.Movement_panel.Location = new System.Drawing.Point(5, 6);
  131. this.Movement_panel.Name = "Movement_panel";
  132. this.Movement_panel.Size = new System.Drawing.Size(790, 34);
  133. this.Movement_panel.TabIndex = 21;
  134. this.Movement_panel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Movement_panel_MouseDown);
  135. this.Movement_panel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Movement_panel_MouseMove);
  136. this.Movement_panel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Movement_panel_MouseUp);
  137. //
  138. // Name_label
  139. //
  140. this.Name_label.BackColor = System.Drawing.Color.Transparent;
  141. this.Name_label.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  142. this.Name_label.ForeColor = System.Drawing.Color.White;
  143. this.Name_label.Image = global::Client.Properties.Resources.server_base;
  144. this.Name_label.Location = new System.Drawing.Point(30, 6);
  145. this.Name_label.Name = "Name_label";
  146. this.Name_label.Size = new System.Drawing.Size(186, 20);
  147. this.Name_label.TabIndex = 0;
  148. this.Name_label.Text = "检查更新";
  149. this.Name_label.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  150. this.Name_label.Click += new System.EventHandler(this.Name_label_Click);
  151. this.Name_label.DoubleClick += new System.EventHandler(this.Name_label_DoubleClick);
  152. this.Name_label.MouseEnter += new System.EventHandler(this.Name_label_MouseEnter);
  153. this.Name_label.MouseLeave += new System.EventHandler(this.Name_label_MouseLeave);
  154. //
  155. // pictureBox1
  156. //
  157. this.pictureBox1.Image = global::Client.Properties.Resources.server_base;
  158. this.pictureBox1.Location = new System.Drawing.Point(307, -37);
  159. this.pictureBox1.Name = "pictureBox1";
  160. this.pictureBox1.Size = new System.Drawing.Size(186, 18);
  161. this.pictureBox1.TabIndex = 33;
  162. this.pictureBox1.TabStop = false;
  163. //
  164. // Config_pb
  165. //
  166. this.Config_pb.BackColor = System.Drawing.Color.Transparent;
  167. this.Config_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  168. this.Config_pb.Image = global::Client.Properties.Resources.Config_Base;
  169. this.Config_pb.Location = new System.Drawing.Point(739, 6);
  170. this.Config_pb.Name = "Config_pb";
  171. this.Config_pb.Size = new System.Drawing.Size(19, 18);
  172. this.Config_pb.TabIndex = 32;
  173. this.Config_pb.TabStop = false;
  174. this.Config_pb.Click += new System.EventHandler(this.Config_pb_Click);
  175. //
  176. // Close_pb
  177. //
  178. this.Close_pb.BackColor = System.Drawing.Color.Transparent;
  179. this.Close_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  180. this.Close_pb.Image = global::Client.Properties.Resources.Cross_Base;
  181. this.Close_pb.Location = new System.Drawing.Point(763, 6);
  182. this.Close_pb.Name = "Close_pb";
  183. this.Close_pb.Size = new System.Drawing.Size(19, 18);
  184. this.Close_pb.TabIndex = 20;
  185. this.Close_pb.TabStop = false;
  186. this.Close_pb.Click += new System.EventHandler(this.Close_pb_Click);
  187. this.Close_pb.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Close_pb_MouseDown);
  188. this.Close_pb.MouseEnter += new System.EventHandler(this.Close_pb_MouseEnter);
  189. this.Close_pb.MouseLeave += new System.EventHandler(this.Close_pb_MouseLeave);
  190. this.Close_pb.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Close_pb_MouseUp);
  191. //
  192. // panel1
  193. //
  194. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
  195. this.panel1.Controls.Add(this.Button_CheckUpdate);
  196. this.panel1.Controls.Add(this.ResolutionComboBox);
  197. this.panel1.Controls.Add(this.label10);
  198. this.panel1.Controls.Add(this.serverlistbox);
  199. this.panel1.Controls.Add(this.Windowed_CheckBox);
  200. this.panel1.Controls.Add(this.label1);
  201. this.panel1.Controls.Add(this.FullScreen_CheckBox);
  202. this.panel1.Controls.Add(this.FPSLimit_CheckBox);
  203. this.panel1.Location = new System.Drawing.Point(603, 0);
  204. this.panel1.Name = "panel1";
  205. this.panel1.Size = new System.Drawing.Size(187, 427);
  206. this.panel1.TabIndex = 46;
  207. //
  208. // Button_CheckUpdate
  209. //
  210. this.Button_CheckUpdate.Enabled = false;
  211. this.Button_CheckUpdate.Location = new System.Drawing.Point(18, 304);
  212. this.Button_CheckUpdate.Name = "Button_CheckUpdate";
  213. this.Button_CheckUpdate.Size = new System.Drawing.Size(166, 23);
  214. this.Button_CheckUpdate.TabIndex = 45;
  215. this.Button_CheckUpdate.Text = "检查文件完整性";
  216. this.Button_CheckUpdate.UseVisualStyleBackColor = true;
  217. this.Button_CheckUpdate.Visible = false;
  218. this.Button_CheckUpdate.Click += new System.EventHandler(this.Button_CheckUpdate_Click);
  219. //
  220. // ResolutionComboBox
  221. //
  222. this.ResolutionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  223. this.ResolutionComboBox.FormattingEnabled = true;
  224. this.ResolutionComboBox.Location = new System.Drawing.Point(18, 32);
  225. this.ResolutionComboBox.Name = "ResolutionComboBox";
  226. this.ResolutionComboBox.Size = new System.Drawing.Size(168, 20);
  227. this.ResolutionComboBox.TabIndex = 41;
  228. this.ResolutionComboBox.TextChanged += new System.EventHandler(this.ResolutionComboBox_TextChanged);
  229. //
  230. // label10
  231. //
  232. this.label10.AutoSize = true;
  233. this.label10.BackColor = System.Drawing.Color.Transparent;
  234. this.label10.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  235. this.label10.ForeColor = System.Drawing.Color.MediumSpringGreen;
  236. this.label10.Location = new System.Drawing.Point(15, 15);
  237. this.label10.Name = "label10";
  238. this.label10.Size = new System.Drawing.Size(67, 14);
  239. this.label10.TabIndex = 35;
  240. this.label10.Text = "分辨率设置";
  241. this.label10.Click += new System.EventHandler(this.label10_Click);
  242. this.label10.DoubleClick += new System.EventHandler(this.label10_DoubleClick);
  243. //
  244. // serverlistbox
  245. //
  246. this.serverlistbox.DisplayMember = "1";
  247. this.serverlistbox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  248. this.serverlistbox.FormattingEnabled = true;
  249. this.serverlistbox.Location = new System.Drawing.Point(17, 379);
  250. this.serverlistbox.Name = "serverlistbox";
  251. this.serverlistbox.Size = new System.Drawing.Size(168, 20);
  252. this.serverlistbox.TabIndex = 33;
  253. this.serverlistbox.ValueMember = "1";
  254. this.serverlistbox.SelectedIndexChanged += new System.EventHandler(this.serverlistbox_SelectedIndexChanged);
  255. //
  256. // Windowed_CheckBox
  257. //
  258. this.Windowed_CheckBox.AutoSize = true;
  259. this.Windowed_CheckBox.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  260. this.Windowed_CheckBox.ForeColor = System.Drawing.SystemColors.ButtonFace;
  261. this.Windowed_CheckBox.Location = new System.Drawing.Point(17, 102);
  262. this.Windowed_CheckBox.Name = "Windowed_CheckBox";
  263. this.Windowed_CheckBox.Size = new System.Drawing.Size(72, 16);
  264. this.Windowed_CheckBox.TabIndex = 44;
  265. this.Windowed_CheckBox.Text = "窗口置顶";
  266. this.Windowed_CheckBox.UseVisualStyleBackColor = false;
  267. this.Windowed_CheckBox.CheckedChanged += new System.EventHandler(this.Windowed_CheckBox_CheckedChanged);
  268. //
  269. // label1
  270. //
  271. this.label1.AutoSize = true;
  272. this.label1.BackColor = System.Drawing.SystemColors.ControlText;
  273. this.label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  274. this.label1.ForeColor = System.Drawing.Color.White;
  275. this.label1.Location = new System.Drawing.Point(16, 355);
  276. this.label1.Name = "label1";
  277. this.label1.Size = new System.Drawing.Size(70, 12);
  278. this.label1.TabIndex = 34;
  279. this.label1.Text = "选择区服:";
  280. //
  281. // FullScreen_CheckBox
  282. //
  283. this.FullScreen_CheckBox.AutoSize = true;
  284. this.FullScreen_CheckBox.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  285. this.FullScreen_CheckBox.ForeColor = System.Drawing.SystemColors.ButtonFace;
  286. this.FullScreen_CheckBox.Location = new System.Drawing.Point(18, 58);
  287. this.FullScreen_CheckBox.Name = "FullScreen_CheckBox";
  288. this.FullScreen_CheckBox.Size = new System.Drawing.Size(48, 16);
  289. this.FullScreen_CheckBox.TabIndex = 42;
  290. this.FullScreen_CheckBox.Text = "全屏";
  291. this.FullScreen_CheckBox.UseVisualStyleBackColor = false;
  292. this.FullScreen_CheckBox.CheckedChanged += new System.EventHandler(this.FullScreen_CheckBox_CheckedChanged);
  293. //
  294. // FPSLimit_CheckBox
  295. //
  296. this.FPSLimit_CheckBox.AutoSize = true;
  297. this.FPSLimit_CheckBox.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  298. this.FPSLimit_CheckBox.ForeColor = System.Drawing.SystemColors.ButtonFace;
  299. this.FPSLimit_CheckBox.Location = new System.Drawing.Point(18, 80);
  300. this.FPSLimit_CheckBox.Name = "FPSLimit_CheckBox";
  301. this.FPSLimit_CheckBox.Size = new System.Drawing.Size(66, 16);
  302. this.FPSLimit_CheckBox.TabIndex = 43;
  303. this.FPSLimit_CheckBox.Text = "FPS上限";
  304. this.FPSLimit_CheckBox.UseVisualStyleBackColor = false;
  305. this.FPSLimit_CheckBox.CheckedChanged += new System.EventHandler(this.FPSLimit_CheckBox_CheckedChanged);
  306. //
  307. // Version_label
  308. //
  309. this.Version_label.BackColor = System.Drawing.Color.Transparent;
  310. this.Version_label.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  311. this.Version_label.ForeColor = System.Drawing.Color.Gray;
  312. this.Version_label.Location = new System.Drawing.Point(672, 528);
  313. this.Version_label.Name = "Version_label";
  314. this.Version_label.Size = new System.Drawing.Size(120, 12);
  315. this.Version_label.TabIndex = 31;
  316. this.Version_label.Text = "Version--1.3.0.3";
  317. this.Version_label.TextAlign = System.Drawing.ContentAlignment.TopRight;
  318. //
  319. // CurrentFile_label
  320. //
  321. this.CurrentFile_label.Anchor = System.Windows.Forms.AnchorStyles.Right;
  322. this.CurrentFile_label.BackColor = System.Drawing.Color.Transparent;
  323. this.CurrentFile_label.Font = new System.Drawing.Font("宋体", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  324. this.CurrentFile_label.ForeColor = System.Drawing.Color.Gray;
  325. this.CurrentFile_label.Location = new System.Drawing.Point(60, 468);
  326. this.CurrentFile_label.Name = "CurrentFile_label";
  327. this.CurrentFile_label.Size = new System.Drawing.Size(362, 16);
  328. this.CurrentFile_label.TabIndex = 27;
  329. this.CurrentFile_label.Text = "自动更新.";
  330. this.CurrentFile_label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  331. this.CurrentFile_label.Visible = false;
  332. //
  333. // CurrentPercent_label
  334. //
  335. this.CurrentPercent_label.Anchor = System.Windows.Forms.AnchorStyles.Right;
  336. this.CurrentPercent_label.BackColor = System.Drawing.Color.Transparent;
  337. this.CurrentPercent_label.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  338. this.CurrentPercent_label.ForeColor = System.Drawing.Color.Gray;
  339. this.CurrentPercent_label.Location = new System.Drawing.Point(616, 482);
  340. this.CurrentPercent_label.Name = "CurrentPercent_label";
  341. this.CurrentPercent_label.Size = new System.Drawing.Size(35, 18);
  342. this.CurrentPercent_label.TabIndex = 28;
  343. this.CurrentPercent_label.Text = "100%";
  344. this.CurrentPercent_label.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  345. this.CurrentPercent_label.Visible = false;
  346. //
  347. // TotalPercent_label
  348. //
  349. this.TotalPercent_label.Anchor = System.Windows.Forms.AnchorStyles.Right;
  350. this.TotalPercent_label.BackColor = System.Drawing.Color.Transparent;
  351. this.TotalPercent_label.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  352. this.TotalPercent_label.ForeColor = System.Drawing.Color.Gray;
  353. this.TotalPercent_label.Location = new System.Drawing.Point(614, 501);
  354. this.TotalPercent_label.Name = "TotalPercent_label";
  355. this.TotalPercent_label.Size = new System.Drawing.Size(35, 18);
  356. this.TotalPercent_label.TabIndex = 29;
  357. this.TotalPercent_label.Text = "100%";
  358. this.TotalPercent_label.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  359. this.TotalPercent_label.Visible = false;
  360. //
  361. // Credit_label
  362. //
  363. this.Credit_label.AutoSize = true;
  364. this.Credit_label.BackColor = System.Drawing.Color.Transparent;
  365. this.Credit_label.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  366. this.Credit_label.ForeColor = System.Drawing.Color.Gray;
  367. this.Credit_label.Location = new System.Drawing.Point(12, 527);
  368. this.Credit_label.Name = "Credit_label";
  369. this.Credit_label.Size = new System.Drawing.Size(156, 13);
  370. this.Credit_label.TabIndex = 30;
  371. this.Credit_label.Text = "www.mir3cn.com QQ:暂不开放";
  372. this.Credit_label.Click += new System.EventHandler(this.Credit_label_Click);
  373. //
  374. // ProgTotalEnd_pb
  375. //
  376. this.ProgTotalEnd_pb.BackColor = System.Drawing.Color.Transparent;
  377. this.ProgTotalEnd_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  378. this.ProgTotalEnd_pb.Image = global::Client.Properties.Resources.NEW_Progress_End__Blue_;
  379. this.ProgTotalEnd_pb.Location = new System.Drawing.Point(608, 505);
  380. this.ProgTotalEnd_pb.Name = "ProgTotalEnd_pb";
  381. this.ProgTotalEnd_pb.Size = new System.Drawing.Size(4, 14);
  382. this.ProgTotalEnd_pb.TabIndex = 26;
  383. this.ProgTotalEnd_pb.TabStop = false;
  384. //
  385. // ProgEnd_pb
  386. //
  387. this.ProgEnd_pb.BackColor = System.Drawing.Color.Transparent;
  388. this.ProgEnd_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  389. this.ProgEnd_pb.Image = global::Client.Properties.Resources.NEW_Progress_End__Green_;
  390. this.ProgEnd_pb.Location = new System.Drawing.Point(608, 486);
  391. this.ProgEnd_pb.Name = "ProgEnd_pb";
  392. this.ProgEnd_pb.Size = new System.Drawing.Size(4, 14);
  393. this.ProgEnd_pb.TabIndex = 25;
  394. this.ProgEnd_pb.TabStop = false;
  395. //
  396. // ProgressCurrent_pb
  397. //
  398. this.ProgressCurrent_pb.BackColor = System.Drawing.Color.Transparent;
  399. this.ProgressCurrent_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  400. this.ProgressCurrent_pb.Image = global::Client.Properties.Resources.Green_Progress;
  401. this.ProgressCurrent_pb.Location = new System.Drawing.Point(58, 490);
  402. this.ProgressCurrent_pb.Name = "ProgressCurrent_pb";
  403. this.ProgressCurrent_pb.Size = new System.Drawing.Size(550, 14);
  404. this.ProgressCurrent_pb.TabIndex = 23;
  405. this.ProgressCurrent_pb.TabStop = false;
  406. this.ProgressCurrent_pb.SizeChanged += new System.EventHandler(this.ProgressCurrent_pb_SizeChanged);
  407. //
  408. // TotalProg_pb
  409. //
  410. this.TotalProg_pb.BackColor = System.Drawing.Color.Transparent;
  411. this.TotalProg_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  412. this.TotalProg_pb.Image = global::Client.Properties.Resources.Blue_Progress;
  413. this.TotalProg_pb.Location = new System.Drawing.Point(58, 508);
  414. this.TotalProg_pb.Name = "TotalProg_pb";
  415. this.TotalProg_pb.Size = new System.Drawing.Size(550, 13);
  416. this.TotalProg_pb.TabIndex = 22;
  417. this.TotalProg_pb.TabStop = false;
  418. this.TotalProg_pb.SizeChanged += new System.EventHandler(this.TotalProg_pb_SizeChanged);
  419. //
  420. // Launch_pb
  421. //
  422. this.Launch_pb.BackColor = System.Drawing.Color.Transparent;
  423. this.Launch_pb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  424. this.Launch_pb.Cursor = System.Windows.Forms.Cursors.Hand;
  425. this.Launch_pb.Enabled = false;
  426. this.Launch_pb.Image = global::Client.Properties.Resources.Launch_Base1;
  427. this.Launch_pb.Location = new System.Drawing.Point(658, 473);
  428. this.Launch_pb.Name = "Launch_pb";
  429. this.Launch_pb.Size = new System.Drawing.Size(116, 50);
  430. this.Launch_pb.TabIndex = 19;
  431. this.Launch_pb.TabStop = false;
  432. this.Launch_pb.Click += new System.EventHandler(this.Launch_pb_Click);
  433. this.Launch_pb.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Launch_pb_MouseDown);
  434. this.Launch_pb.MouseEnter += new System.EventHandler(this.Launch_pb_MouseEnter);
  435. this.Launch_pb.MouseLeave += new System.EventHandler(this.Launch_pb_MouseLeave);
  436. this.Launch_pb.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Launch_pb_MouseUp);
  437. //
  438. // linkLabel1
  439. //
  440. this.linkLabel1.AutoSize = true;
  441. this.linkLabel1.BackColor = System.Drawing.Color.Transparent;
  442. this.linkLabel1.Font = new System.Drawing.Font("黑体", 10F);
  443. this.linkLabel1.ForeColor = System.Drawing.Color.Black;
  444. this.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline;
  445. this.linkLabel1.LinkColor = System.Drawing.Color.Black;
  446. this.linkLabel1.Location = new System.Drawing.Point(30, 228);
  447. this.linkLabel1.Name = "linkLabel1";
  448. this.linkLabel1.Size = new System.Drawing.Size(63, 14);
  449. this.linkLabel1.TabIndex = 45;
  450. this.linkLabel1.TabStop = true;
  451. this.linkLabel1.Text = "官方网站";
  452. this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
  453. //
  454. // panel2
  455. //
  456. this.panel2.BackColor = System.Drawing.Color.Transparent;
  457. this.panel2.BackgroundImage = global::Client.Properties.Resources.back6;
  458. this.panel2.Controls.Add(this.linkLabel6);
  459. this.panel2.Controls.Add(this.linkLabel5);
  460. this.panel2.Controls.Add(this.linkLabel4);
  461. this.panel2.Controls.Add(this.label2);
  462. this.panel2.Controls.Add(this.panel1);
  463. this.panel2.Controls.Add(this.linkLabel3);
  464. this.panel2.Controls.Add(this.linkLabel2);
  465. this.panel2.Controls.Add(this.linkLabel1);
  466. this.panel2.Location = new System.Drawing.Point(5, 40);
  467. this.panel2.Name = "panel2";
  468. this.panel2.Size = new System.Drawing.Size(790, 425);
  469. this.panel2.TabIndex = 47;
  470. //
  471. // linkLabel5
  472. //
  473. this.linkLabel5.AutoSize = true;
  474. this.linkLabel5.BackColor = System.Drawing.Color.Transparent;
  475. this.linkLabel5.Font = new System.Drawing.Font("黑体", 10F);
  476. this.linkLabel5.ForeColor = System.Drawing.Color.Black;
  477. this.linkLabel5.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline;
  478. this.linkLabel5.LinkColor = System.Drawing.Color.Black;
  479. this.linkLabel5.Location = new System.Drawing.Point(30, 337);
  480. this.linkLabel5.Name = "linkLabel5";
  481. this.linkLabel5.Size = new System.Drawing.Size(91, 14);
  482. this.linkLabel5.TabIndex = 52;
  483. this.linkLabel5.TabStop = true;
  484. this.linkLabel5.Text = "账号交易须知";
  485. this.linkLabel5.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel5_LinkClicked);
  486. //
  487. // linkLabel4
  488. //
  489. this.linkLabel4.AutoSize = true;
  490. this.linkLabel4.BackColor = System.Drawing.Color.Transparent;
  491. this.linkLabel4.Font = new System.Drawing.Font("黑体", 10F);
  492. this.linkLabel4.ForeColor = System.Drawing.Color.Black;
  493. this.linkLabel4.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline;
  494. this.linkLabel4.LinkColor = System.Drawing.Color.Black;
  495. this.linkLabel4.Location = new System.Drawing.Point(30, 313);
  496. this.linkLabel4.Name = "linkLabel4";
  497. this.linkLabel4.Size = new System.Drawing.Size(91, 14);
  498. this.linkLabel4.TabIndex = 51;
  499. this.linkLabel4.TabStop = true;
  500. this.linkLabel4.Text = "更新维护通知";
  501. this.linkLabel4.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked);
  502. //
  503. // label2
  504. //
  505. this.label2.AutoSize = true;
  506. this.label2.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  507. this.label2.Location = new System.Drawing.Point(25, 179);
  508. this.label2.Name = "label2";
  509. this.label2.Size = new System.Drawing.Size(133, 19);
  510. this.label2.TabIndex = 50;
  511. this.label2.Text = "新闻动态NEWS";
  512. //
  513. // linkLabel3
  514. //
  515. this.linkLabel3.AutoSize = true;
  516. this.linkLabel3.BackColor = System.Drawing.Color.Transparent;
  517. this.linkLabel3.Font = new System.Drawing.Font("黑体", 10F);
  518. this.linkLabel3.ForeColor = System.Drawing.Color.Black;
  519. this.linkLabel3.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline;
  520. this.linkLabel3.LinkColor = System.Drawing.Color.Black;
  521. this.linkLabel3.Location = new System.Drawing.Point(30, 288);
  522. this.linkLabel3.Name = "linkLabel3";
  523. this.linkLabel3.Size = new System.Drawing.Size(119, 14);
  524. this.linkLabel3.TabIndex = 47;
  525. this.linkLabel3.TabStop = true;
  526. this.linkLabel3.Text = "白屏问题解决方案";
  527. this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
  528. //
  529. // linkLabel2
  530. //
  531. this.linkLabel2.AutoSize = true;
  532. this.linkLabel2.BackColor = System.Drawing.Color.Transparent;
  533. this.linkLabel2.Font = new System.Drawing.Font("黑体", 10F, System.Drawing.FontStyle.Bold);
  534. this.linkLabel2.ForeColor = System.Drawing.Color.Black;
  535. this.linkLabel2.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline;
  536. this.linkLabel2.LinkColor = System.Drawing.Color.Red;
  537. this.linkLabel2.Location = new System.Drawing.Point(30, 262);
  538. this.linkLabel2.Name = "linkLabel2";
  539. this.linkLabel2.Size = new System.Drawing.Size(205, 14);
  540. this.linkLabel2.TabIndex = 46;
  541. this.linkLabel2.TabStop = true;
  542. this.linkLabel2.Text = "新区于2024年5月3日正式开启";
  543. this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
  544. //
  545. // linkLabel6
  546. //
  547. this.linkLabel6.AutoSize = true;
  548. this.linkLabel6.BackColor = System.Drawing.Color.Transparent;
  549. this.linkLabel6.Font = new System.Drawing.Font("黑体", 10F);
  550. this.linkLabel6.ForeColor = System.Drawing.Color.Black;
  551. this.linkLabel6.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline;
  552. this.linkLabel6.LinkColor = System.Drawing.Color.Black;
  553. this.linkLabel6.Location = new System.Drawing.Point(30, 364);
  554. this.linkLabel6.Name = "linkLabel6";
  555. this.linkLabel6.Size = new System.Drawing.Size(91, 14);
  556. this.linkLabel6.TabIndex = 53;
  557. this.linkLabel6.TabStop = true;
  558. this.linkLabel6.Text = "赛季任务介绍";
  559. this.linkLabel6.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel6_LinkClicked);
  560. //
  561. // AMain
  562. //
  563. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  564. this.BackColor = System.Drawing.SystemColors.ActiveCaption;
  565. this.BackgroundImage = global::Client.Properties.Resources.pfffft;
  566. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  567. this.ClientSize = new System.Drawing.Size(800, 549);
  568. this.Controls.Add(this.panel2);
  569. this.Controls.Add(this.Credit_label);
  570. this.Controls.Add(this.Version_label);
  571. this.Controls.Add(this.TotalPercent_label);
  572. this.Controls.Add(this.CurrentPercent_label);
  573. this.Controls.Add(this.CurrentFile_label);
  574. this.Controls.Add(this.ProgTotalEnd_pb);
  575. this.Controls.Add(this.ProgEnd_pb);
  576. this.Controls.Add(this.ProgressCurrent_pb);
  577. this.Controls.Add(this.TotalProg_pb);
  578. this.Controls.Add(this.Launch_pb);
  579. this.Controls.Add(this.SpeedLabel);
  580. this.Controls.Add(this.ActionLabel);
  581. this.Controls.Add(this.Movement_panel);
  582. this.DoubleBuffered = true;
  583. this.ForeColor = System.Drawing.SystemColors.ControlText;
  584. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  585. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  586. this.MaximizeBox = false;
  587. this.MinimizeBox = false;
  588. this.Name = "AMain";
  589. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  590. this.Text = "Launcher";
  591. this.TransparencyKey = System.Drawing.Color.Black;
  592. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.AMain_FormClosed);
  593. this.Load += new System.EventHandler(this.AMain_Load);
  594. this.Movement_panel.ResumeLayout(false);
  595. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  596. ((System.ComponentModel.ISupportInitialize)(this.Config_pb)).EndInit();
  597. ((System.ComponentModel.ISupportInitialize)(this.Close_pb)).EndInit();
  598. this.panel1.ResumeLayout(false);
  599. this.panel1.PerformLayout();
  600. ((System.ComponentModel.ISupportInitialize)(this.ProgTotalEnd_pb)).EndInit();
  601. ((System.ComponentModel.ISupportInitialize)(this.ProgEnd_pb)).EndInit();
  602. ((System.ComponentModel.ISupportInitialize)(this.ProgressCurrent_pb)).EndInit();
  603. ((System.ComponentModel.ISupportInitialize)(this.TotalProg_pb)).EndInit();
  604. ((System.ComponentModel.ISupportInitialize)(this.Launch_pb)).EndInit();
  605. this.panel2.ResumeLayout(false);
  606. this.panel2.PerformLayout();
  607. this.ResumeLayout(false);
  608. this.PerformLayout();
  609. }
  610. #endregion
  611. private System.Windows.Forms.Label ActionLabel;
  612. private System.Windows.Forms.Label SpeedLabel;
  613. public System.Windows.Forms.Timer InterfaceTimer;
  614. public System.Windows.Forms.PictureBox Launch_pb;
  615. private System.Windows.Forms.PictureBox Close_pb;
  616. private System.Windows.Forms.Panel Movement_panel;
  617. private System.Windows.Forms.PictureBox TotalProg_pb;
  618. private System.Windows.Forms.PictureBox ProgressCurrent_pb;
  619. private System.Windows.Forms.Label Name_label;
  620. private System.Windows.Forms.PictureBox ProgEnd_pb;
  621. private System.Windows.Forms.PictureBox ProgTotalEnd_pb;
  622. private System.Windows.Forms.Label CurrentFile_label;
  623. private System.Windows.Forms.Label CurrentPercent_label;
  624. private System.Windows.Forms.Label TotalPercent_label;
  625. private System.Windows.Forms.Label Credit_label;
  626. private System.Windows.Forms.Label Version_label;
  627. private System.Windows.Forms.PictureBox pictureBox1;
  628. private ComboBox serverlistbox;
  629. private Label label1;
  630. private Label label10;
  631. private ComboBox ResolutionComboBox;
  632. private CheckBox FullScreen_CheckBox;
  633. private CheckBox FPSLimit_CheckBox;
  634. private CheckBox Windowed_CheckBox;
  635. private PictureBox Config_pb;
  636. private LinkLabel linkLabel1;
  637. private Panel panel1;
  638. private Button Button_CheckUpdate;
  639. private Panel panel2;
  640. private LinkLabel linkLabel2;
  641. private LinkLabel linkLabel3;
  642. private Label label2;
  643. private LinkLabel linkLabel4;
  644. private LinkLabel linkLabel5;
  645. private LinkLabel linkLabel6;
  646. }
  647. }