Techblox Mod Manager / Launcher
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

300 строки
17KB

  1. namespace GCMM
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Installed", System.Windows.Forms.HorizontalAlignment.Center);
  29. System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Available", System.Windows.Forms.HorizontalAlignment.Center);
  30. System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
  31. "Mod",
  32. "modtainers",
  33. "1.0",
  34. "2020.06.15. 2:01:43"}, -1);
  35. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  36. this.modlist = new System.Windows.Forms.ListView();
  37. this.modName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  38. this.modAuthor = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  39. this.modVersion = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  40. this.modTimestamp = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  41. this.status = new System.Windows.Forms.Label();
  42. this.installbtn = new System.Windows.Forms.Button();
  43. this.uninstallbtn = new System.Windows.Forms.Button();
  44. this.playbtn = new System.Windows.Forms.Button();
  45. this.settingsbtn = new System.Windows.Forms.Button();
  46. this.findlog = new System.Windows.Forms.Button();
  47. this.unpatched = new System.Windows.Forms.CheckBox();
  48. this.modinfobox = new System.Windows.Forms.RichTextBox();
  49. this.refreshbtn = new System.Windows.Forms.Button();
  50. this.validatebtn = new System.Windows.Forms.Button();
  51. this.SuspendLayout();
  52. //
  53. // modlist
  54. //
  55. this.modlist.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  56. | System.Windows.Forms.AnchorStyles.Left)
  57. | System.Windows.Forms.AnchorStyles.Right)));
  58. this.modlist.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(240)))), ((int)(((byte)(216)))));
  59. this.modlist.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  60. this.modlist.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  61. this.modName,
  62. this.modAuthor,
  63. this.modVersion,
  64. this.modTimestamp});
  65. this.modlist.ForeColor = System.Drawing.Color.Green;
  66. this.modlist.FullRowSelect = true;
  67. listViewGroup1.Header = "Installed";
  68. listViewGroup1.HeaderAlignment = System.Windows.Forms.HorizontalAlignment.Center;
  69. listViewGroup1.Name = "installed";
  70. listViewGroup2.Header = "Available";
  71. listViewGroup2.HeaderAlignment = System.Windows.Forms.HorizontalAlignment.Center;
  72. listViewGroup2.Name = "available";
  73. this.modlist.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
  74. listViewGroup1,
  75. listViewGroup2});
  76. this.modlist.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
  77. this.modlist.HideSelection = false;
  78. listViewItem1.Group = listViewGroup1;
  79. this.modlist.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
  80. listViewItem1});
  81. this.modlist.Location = new System.Drawing.Point(12, 47);
  82. this.modlist.Name = "modlist";
  83. this.modlist.Size = new System.Drawing.Size(491, 433);
  84. this.modlist.TabIndex = 0;
  85. this.modlist.UseCompatibleStateImageBehavior = false;
  86. this.modlist.View = System.Windows.Forms.View.Details;
  87. this.modlist.SelectedIndexChanged += new System.EventHandler(this.modlist_SelectedIndexChanged);
  88. //
  89. // modName
  90. //
  91. this.modName.Text = "Name";
  92. this.modName.Width = 148;
  93. //
  94. // modAuthor
  95. //
  96. this.modAuthor.Text = "Author";
  97. this.modAuthor.Width = 142;
  98. //
  99. // modVersion
  100. //
  101. this.modVersion.Text = "Version";
  102. this.modVersion.Width = 62;
  103. //
  104. // modTimestamp
  105. //
  106. this.modTimestamp.Text = "Last updated";
  107. this.modTimestamp.Width = 120;
  108. //
  109. // status
  110. //
  111. this.status.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  112. this.status.AutoSize = true;
  113. this.status.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  114. this.status.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  115. this.status.ForeColor = System.Drawing.Color.Lime;
  116. this.status.Location = new System.Drawing.Point(8, 487);
  117. this.status.Name = "status";
  118. this.status.Size = new System.Drawing.Size(60, 40);
  119. this.status.TabIndex = 1;
  120. this.status.Text = "Status:\r\nasd";
  121. //
  122. // installbtn
  123. //
  124. this.installbtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  125. this.installbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  126. this.installbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  127. this.installbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  128. this.installbtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  129. this.installbtn.Location = new System.Drawing.Point(509, 12);
  130. this.installbtn.Name = "installbtn";
  131. this.installbtn.Size = new System.Drawing.Size(263, 49);
  132. this.installbtn.TabIndex = 2;
  133. this.installbtn.Text = "Install mod";
  134. this.installbtn.UseVisualStyleBackColor = true;
  135. this.installbtn.Click += new System.EventHandler(this.installbtn_Click);
  136. //
  137. // uninstallbtn
  138. //
  139. this.uninstallbtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  140. this.uninstallbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Black;
  141. this.uninstallbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Black;
  142. this.uninstallbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  143. this.uninstallbtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  144. this.uninstallbtn.ForeColor = System.Drawing.Color.Green;
  145. this.uninstallbtn.Location = new System.Drawing.Point(509, 67);
  146. this.uninstallbtn.Name = "uninstallbtn";
  147. this.uninstallbtn.Size = new System.Drawing.Size(263, 49);
  148. this.uninstallbtn.TabIndex = 3;
  149. this.uninstallbtn.Text = "Uninstall mod";
  150. this.uninstallbtn.UseVisualStyleBackColor = true;
  151. this.uninstallbtn.Click += new System.EventHandler(this.uninstallbtn_Click);
  152. //
  153. // playbtn
  154. //
  155. this.playbtn.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  156. this.playbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  157. this.playbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  158. this.playbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  159. this.playbtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  160. this.playbtn.Location = new System.Drawing.Point(250, 487);
  161. this.playbtn.Name = "playbtn";
  162. this.playbtn.Size = new System.Drawing.Size(300, 62);
  163. this.playbtn.TabIndex = 5;
  164. this.playbtn.Text = "Play";
  165. this.playbtn.UseVisualStyleBackColor = true;
  166. this.playbtn.Click += new System.EventHandler(this.playbtn_Click);
  167. //
  168. // settingsbtn
  169. //
  170. this.settingsbtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  171. this.settingsbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  172. this.settingsbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  173. this.settingsbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  174. this.settingsbtn.Location = new System.Drawing.Point(667, 487);
  175. this.settingsbtn.Name = "settingsbtn";
  176. this.settingsbtn.Size = new System.Drawing.Size(105, 29);
  177. this.settingsbtn.TabIndex = 6;
  178. this.settingsbtn.Text = "Settings";
  179. this.settingsbtn.UseVisualStyleBackColor = true;
  180. this.settingsbtn.Click += new System.EventHandler(this.settingsbtn_Click);
  181. //
  182. // findlog
  183. //
  184. this.findlog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  185. this.findlog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  186. this.findlog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  187. this.findlog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  188. this.findlog.Location = new System.Drawing.Point(666, 522);
  189. this.findlog.Name = "findlog";
  190. this.findlog.Size = new System.Drawing.Size(105, 29);
  191. this.findlog.TabIndex = 7;
  192. this.findlog.Text = "Find game log";
  193. this.findlog.UseVisualStyleBackColor = true;
  194. this.findlog.Click += new System.EventHandler(this.findlog_Click);
  195. //
  196. // unpatched
  197. //
  198. this.unpatched.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  199. this.unpatched.AutoSize = true;
  200. this.unpatched.Location = new System.Drawing.Point(12, 534);
  201. this.unpatched.Name = "unpatched";
  202. this.unpatched.Size = new System.Drawing.Size(218, 17);
  203. this.unpatched.TabIndex = 8;
  204. this.unpatched.Text = "Disable mods (check if game is crashing)";
  205. this.unpatched.UseVisualStyleBackColor = true;
  206. this.unpatched.CheckedChanged += new System.EventHandler(this.unpatched_CheckedChanged);
  207. //
  208. // modinfobox
  209. //
  210. this.modinfobox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  211. | System.Windows.Forms.AnchorStyles.Right)));
  212. this.modinfobox.BackColor = System.Drawing.Color.Black;
  213. this.modinfobox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  214. this.modinfobox.ForeColor = System.Drawing.Color.Lime;
  215. this.modinfobox.Location = new System.Drawing.Point(509, 122);
  216. this.modinfobox.Name = "modinfobox";
  217. this.modinfobox.ReadOnly = true;
  218. this.modinfobox.Size = new System.Drawing.Size(263, 358);
  219. this.modinfobox.TabIndex = 9;
  220. this.modinfobox.Text = "";
  221. //
  222. // refreshbtn
  223. //
  224. this.refreshbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  225. this.refreshbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  226. this.refreshbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  227. this.refreshbtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  228. this.refreshbtn.Location = new System.Drawing.Point(12, 12);
  229. this.refreshbtn.Name = "refreshbtn";
  230. this.refreshbtn.Size = new System.Drawing.Size(105, 29);
  231. this.refreshbtn.TabIndex = 10;
  232. this.refreshbtn.Text = "Refresh";
  233. this.refreshbtn.UseVisualStyleBackColor = true;
  234. this.refreshbtn.Click += new System.EventHandler(this.refreshbtn_Click);
  235. //
  236. // validatebtn
  237. //
  238. this.validatebtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  239. this.validatebtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  240. this.validatebtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  241. this.validatebtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  242. this.validatebtn.Location = new System.Drawing.Point(398, 12);
  243. this.validatebtn.Name = "validatebtn";
  244. this.validatebtn.Size = new System.Drawing.Size(105, 29);
  245. this.validatebtn.TabIndex = 11;
  246. this.validatebtn.Text = "Validate game";
  247. this.validatebtn.UseVisualStyleBackColor = true;
  248. this.validatebtn.Click += new System.EventHandler(this.validatebtn_Click);
  249. //
  250. // MainForm
  251. //
  252. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  253. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  254. this.BackColor = System.Drawing.Color.Black;
  255. this.ClientSize = new System.Drawing.Size(784, 561);
  256. this.Controls.Add(this.validatebtn);
  257. this.Controls.Add(this.refreshbtn);
  258. this.Controls.Add(this.modinfobox);
  259. this.Controls.Add(this.unpatched);
  260. this.Controls.Add(this.findlog);
  261. this.Controls.Add(this.settingsbtn);
  262. this.Controls.Add(this.playbtn);
  263. this.Controls.Add(this.uninstallbtn);
  264. this.Controls.Add(this.installbtn);
  265. this.Controls.Add(this.status);
  266. this.Controls.Add(this.modlist);
  267. this.ForeColor = System.Drawing.Color.Lime;
  268. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  269. this.Name = "MainForm";
  270. this.Text = "Gamecraft Mod Manager";
  271. this.Load += new System.EventHandler(this.Form1_Load);
  272. this.ResumeLayout(false);
  273. this.PerformLayout();
  274. }
  275. #endregion
  276. private System.Windows.Forms.ListView modlist;
  277. private System.Windows.Forms.ColumnHeader modName;
  278. private System.Windows.Forms.ColumnHeader modVersion;
  279. private System.Windows.Forms.ColumnHeader modTimestamp;
  280. private System.Windows.Forms.Label status;
  281. private System.Windows.Forms.Button installbtn;
  282. private System.Windows.Forms.Button uninstallbtn;
  283. private System.Windows.Forms.Button playbtn;
  284. private System.Windows.Forms.Button settingsbtn;
  285. private System.Windows.Forms.ColumnHeader modAuthor;
  286. private System.Windows.Forms.Button findlog;
  287. private System.Windows.Forms.CheckBox unpatched;
  288. private System.Windows.Forms.RichTextBox modinfobox;
  289. private System.Windows.Forms.Button refreshbtn;
  290. private System.Windows.Forms.Button validatebtn;
  291. }
  292. }