Techblox Mod Manager / Launcher
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

302 lines
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.Sorting = System.Windows.Forms.SortOrder.Ascending;
  85. this.modlist.TabIndex = 0;
  86. this.modlist.UseCompatibleStateImageBehavior = false;
  87. this.modlist.View = System.Windows.Forms.View.Details;
  88. this.modlist.SelectedIndexChanged += new System.EventHandler(this.modlist_SelectedIndexChanged);
  89. //
  90. // modName
  91. //
  92. this.modName.Text = "Name";
  93. this.modName.Width = 148;
  94. //
  95. // modAuthor
  96. //
  97. this.modAuthor.Text = "Author";
  98. this.modAuthor.Width = 142;
  99. //
  100. // modVersion
  101. //
  102. this.modVersion.Text = "Version";
  103. this.modVersion.Width = 62;
  104. //
  105. // modTimestamp
  106. //
  107. this.modTimestamp.Text = "Last updated";
  108. this.modTimestamp.Width = 120;
  109. //
  110. // status
  111. //
  112. this.status.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  113. this.status.AutoSize = true;
  114. this.status.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  115. this.status.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  116. this.status.ForeColor = System.Drawing.Color.Lime;
  117. this.status.Location = new System.Drawing.Point(8, 487);
  118. this.status.Name = "status";
  119. this.status.Size = new System.Drawing.Size(60, 40);
  120. this.status.TabIndex = 1;
  121. this.status.Text = "Status:\r\nasd";
  122. //
  123. // installbtn
  124. //
  125. this.installbtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  126. this.installbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  127. this.installbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  128. this.installbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  129. this.installbtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  130. this.installbtn.Location = new System.Drawing.Point(509, 12);
  131. this.installbtn.Name = "installbtn";
  132. this.installbtn.Size = new System.Drawing.Size(263, 49);
  133. this.installbtn.TabIndex = 2;
  134. this.installbtn.Text = "Install mod";
  135. this.installbtn.UseVisualStyleBackColor = true;
  136. this.installbtn.Click += new System.EventHandler(this.installbtn_Click);
  137. //
  138. // uninstallbtn
  139. //
  140. this.uninstallbtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  141. this.uninstallbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Black;
  142. this.uninstallbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Black;
  143. this.uninstallbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  144. this.uninstallbtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  145. this.uninstallbtn.ForeColor = System.Drawing.Color.Green;
  146. this.uninstallbtn.Location = new System.Drawing.Point(509, 67);
  147. this.uninstallbtn.Name = "uninstallbtn";
  148. this.uninstallbtn.Size = new System.Drawing.Size(263, 49);
  149. this.uninstallbtn.TabIndex = 3;
  150. this.uninstallbtn.Text = "Uninstall mod";
  151. this.uninstallbtn.UseVisualStyleBackColor = true;
  152. this.uninstallbtn.Click += new System.EventHandler(this.uninstallbtn_Click);
  153. //
  154. // playbtn
  155. //
  156. this.playbtn.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  157. this.playbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  158. this.playbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  159. this.playbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  160. this.playbtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  161. this.playbtn.Location = new System.Drawing.Point(250, 487);
  162. this.playbtn.Name = "playbtn";
  163. this.playbtn.Size = new System.Drawing.Size(300, 62);
  164. this.playbtn.TabIndex = 5;
  165. this.playbtn.Text = "Play";
  166. this.playbtn.UseVisualStyleBackColor = true;
  167. this.playbtn.Click += new System.EventHandler(this.playbtn_Click);
  168. //
  169. // settingsbtn
  170. //
  171. this.settingsbtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  172. this.settingsbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  173. this.settingsbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  174. this.settingsbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  175. this.settingsbtn.Location = new System.Drawing.Point(667, 487);
  176. this.settingsbtn.Name = "settingsbtn";
  177. this.settingsbtn.Size = new System.Drawing.Size(105, 29);
  178. this.settingsbtn.TabIndex = 6;
  179. this.settingsbtn.Text = "Settings";
  180. this.settingsbtn.UseVisualStyleBackColor = true;
  181. this.settingsbtn.Click += new System.EventHandler(this.settingsbtn_Click);
  182. //
  183. // findlog
  184. //
  185. this.findlog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  186. this.findlog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  187. this.findlog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  188. this.findlog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  189. this.findlog.Location = new System.Drawing.Point(666, 522);
  190. this.findlog.Name = "findlog";
  191. this.findlog.Size = new System.Drawing.Size(105, 29);
  192. this.findlog.TabIndex = 7;
  193. this.findlog.Text = "Find game log";
  194. this.findlog.UseVisualStyleBackColor = true;
  195. this.findlog.Click += new System.EventHandler(this.findlog_Click);
  196. //
  197. // unpatched
  198. //
  199. this.unpatched.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  200. this.unpatched.AutoSize = true;
  201. this.unpatched.Location = new System.Drawing.Point(12, 534);
  202. this.unpatched.Name = "unpatched";
  203. this.unpatched.Size = new System.Drawing.Size(218, 17);
  204. this.unpatched.TabIndex = 8;
  205. this.unpatched.Text = "Disable mods (check if game is crashing)";
  206. this.unpatched.UseVisualStyleBackColor = true;
  207. this.unpatched.CheckedChanged += new System.EventHandler(this.unpatched_CheckedChanged);
  208. //
  209. // modinfobox
  210. //
  211. this.modinfobox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  212. | System.Windows.Forms.AnchorStyles.Right)));
  213. this.modinfobox.BackColor = System.Drawing.Color.Black;
  214. this.modinfobox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  215. this.modinfobox.ForeColor = System.Drawing.Color.Lime;
  216. this.modinfobox.Location = new System.Drawing.Point(509, 122);
  217. this.modinfobox.Name = "modinfobox";
  218. this.modinfobox.ReadOnly = true;
  219. this.modinfobox.Size = new System.Drawing.Size(263, 358);
  220. this.modinfobox.TabIndex = 9;
  221. this.modinfobox.Text = "";
  222. //
  223. // refreshbtn
  224. //
  225. this.refreshbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  226. this.refreshbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  227. this.refreshbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  228. this.refreshbtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  229. this.refreshbtn.Location = new System.Drawing.Point(12, 12);
  230. this.refreshbtn.Name = "refreshbtn";
  231. this.refreshbtn.Size = new System.Drawing.Size(105, 29);
  232. this.refreshbtn.TabIndex = 10;
  233. this.refreshbtn.Text = "Refresh";
  234. this.refreshbtn.UseVisualStyleBackColor = true;
  235. this.refreshbtn.Click += new System.EventHandler(this.refreshbtn_Click);
  236. //
  237. // validatebtn
  238. //
  239. this.validatebtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  240. this.validatebtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  241. this.validatebtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  242. this.validatebtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  243. this.validatebtn.Location = new System.Drawing.Point(398, 12);
  244. this.validatebtn.Name = "validatebtn";
  245. this.validatebtn.Size = new System.Drawing.Size(105, 29);
  246. this.validatebtn.TabIndex = 11;
  247. this.validatebtn.Text = "Validate game";
  248. this.validatebtn.UseVisualStyleBackColor = true;
  249. this.validatebtn.Click += new System.EventHandler(this.validatebtn_Click);
  250. //
  251. // MainForm
  252. //
  253. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  254. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  255. this.BackColor = System.Drawing.Color.Black;
  256. this.ClientSize = new System.Drawing.Size(784, 561);
  257. this.Controls.Add(this.validatebtn);
  258. this.Controls.Add(this.refreshbtn);
  259. this.Controls.Add(this.modinfobox);
  260. this.Controls.Add(this.unpatched);
  261. this.Controls.Add(this.findlog);
  262. this.Controls.Add(this.settingsbtn);
  263. this.Controls.Add(this.playbtn);
  264. this.Controls.Add(this.uninstallbtn);
  265. this.Controls.Add(this.installbtn);
  266. this.Controls.Add(this.status);
  267. this.Controls.Add(this.modlist);
  268. this.ForeColor = System.Drawing.Color.Lime;
  269. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  270. this.Name = "MainForm";
  271. this.Text = "Gamecraft Mod Manager";
  272. this.Load += new System.EventHandler(this.Form1_Load);
  273. this.Shown += new System.EventHandler(this.MainForm_Shown);
  274. this.ResumeLayout(false);
  275. this.PerformLayout();
  276. }
  277. #endregion
  278. private System.Windows.Forms.ListView modlist;
  279. private System.Windows.Forms.ColumnHeader modName;
  280. private System.Windows.Forms.ColumnHeader modVersion;
  281. private System.Windows.Forms.ColumnHeader modTimestamp;
  282. private System.Windows.Forms.Label status;
  283. private System.Windows.Forms.Button installbtn;
  284. private System.Windows.Forms.Button uninstallbtn;
  285. private System.Windows.Forms.Button playbtn;
  286. private System.Windows.Forms.Button settingsbtn;
  287. private System.Windows.Forms.ColumnHeader modAuthor;
  288. private System.Windows.Forms.Button findlog;
  289. private System.Windows.Forms.CheckBox unpatched;
  290. private System.Windows.Forms.RichTextBox modinfobox;
  291. private System.Windows.Forms.Button refreshbtn;
  292. private System.Windows.Forms.Button validatebtn;
  293. }
  294. }