Techblox Mod Manager / Launcher
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

160 lignes
7.3KB

  1. namespace GCMM
  2. {
  3. partial class SettingsForm
  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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.gamelocation = new System.Windows.Forms.TextBox();
  31. this.browsebtn = new System.Windows.Forms.Button();
  32. this.savebtn = new System.Windows.Forms.Button();
  33. this.cancelbtn = new System.Windows.Forms.Button();
  34. this.useProxy = new System.Windows.Forms.CheckBox();
  35. this.autopatching = new System.Windows.Forms.CheckBox();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  42. this.label1.Location = new System.Drawing.Point(12, 15);
  43. this.label1.Name = "label1";
  44. this.label1.Size = new System.Drawing.Size(116, 20);
  45. this.label1.TabIndex = 0;
  46. this.label1.Text = "Game location:";
  47. //
  48. // gamelocation
  49. //
  50. this.gamelocation.Location = new System.Drawing.Point(135, 15);
  51. this.gamelocation.Name = "gamelocation";
  52. this.gamelocation.Size = new System.Drawing.Size(210, 20);
  53. this.gamelocation.TabIndex = 1;
  54. //
  55. // browsebtn
  56. //
  57. this.browsebtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  58. this.browsebtn.Location = new System.Drawing.Point(352, 12);
  59. this.browsebtn.Name = "browsebtn";
  60. this.browsebtn.Size = new System.Drawing.Size(75, 23);
  61. this.browsebtn.TabIndex = 2;
  62. this.browsebtn.Text = "Browse";
  63. this.browsebtn.UseVisualStyleBackColor = true;
  64. this.browsebtn.Click += new System.EventHandler(this.browsebtn_Click);
  65. //
  66. // savebtn
  67. //
  68. this.savebtn.DialogResult = System.Windows.Forms.DialogResult.OK;
  69. this.savebtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  70. this.savebtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  71. this.savebtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  72. this.savebtn.Location = new System.Drawing.Point(270, 113);
  73. this.savebtn.Name = "savebtn";
  74. this.savebtn.Size = new System.Drawing.Size(75, 23);
  75. this.savebtn.TabIndex = 3;
  76. this.savebtn.Text = "Save";
  77. this.savebtn.UseVisualStyleBackColor = true;
  78. this.savebtn.Click += new System.EventHandler(this.savebtn_Click);
  79. //
  80. // cancelbtn
  81. //
  82. this.cancelbtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  83. this.cancelbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
  84. this.cancelbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
  85. this.cancelbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  86. this.cancelbtn.Location = new System.Drawing.Point(352, 113);
  87. this.cancelbtn.Name = "cancelbtn";
  88. this.cancelbtn.Size = new System.Drawing.Size(75, 23);
  89. this.cancelbtn.TabIndex = 4;
  90. this.cancelbtn.Text = "Cancel";
  91. this.cancelbtn.UseVisualStyleBackColor = true;
  92. this.cancelbtn.Click += new System.EventHandler(this.cancelbtn_Click);
  93. //
  94. // useProxy
  95. //
  96. this.useProxy.AutoSize = true;
  97. this.useProxy.Location = new System.Drawing.Point(12, 49);
  98. this.useProxy.Name = "useProxy";
  99. this.useProxy.Size = new System.Drawing.Size(147, 17);
  100. this.useProxy.TabIndex = 5;
  101. this.useProxy.Text = "Use system proxy settings";
  102. this.useProxy.UseVisualStyleBackColor = true;
  103. //
  104. // autopatching
  105. //
  106. this.autopatching.AutoSize = true;
  107. this.autopatching.Location = new System.Drawing.Point(12, 72);
  108. this.autopatching.Name = "autopatching";
  109. this.autopatching.Size = new System.Drawing.Size(194, 17);
  110. this.autopatching.TabIndex = 6;
  111. this.autopatching.Text = "Enable auto-patching on game start";
  112. this.autopatching.UseVisualStyleBackColor = true;
  113. //
  114. // SettingsForm
  115. //
  116. this.AcceptButton = this.savebtn;
  117. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  118. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  119. this.BackColor = System.Drawing.Color.Black;
  120. this.CancelButton = this.cancelbtn;
  121. this.ClientSize = new System.Drawing.Size(439, 148);
  122. this.Controls.Add(this.autopatching);
  123. this.Controls.Add(this.useProxy);
  124. this.Controls.Add(this.cancelbtn);
  125. this.Controls.Add(this.savebtn);
  126. this.Controls.Add(this.browsebtn);
  127. this.Controls.Add(this.gamelocation);
  128. this.Controls.Add(this.label1);
  129. this.ForeColor = System.Drawing.Color.Lime;
  130. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  131. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  132. this.MaximizeBox = false;
  133. this.MinimizeBox = false;
  134. this.Name = "SettingsForm";
  135. this.ShowIcon = false;
  136. this.ShowInTaskbar = false;
  137. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  138. this.Text = "Settings";
  139. this.Load += new System.EventHandler(this.Form1_Load);
  140. this.ResumeLayout(false);
  141. this.PerformLayout();
  142. }
  143. #endregion
  144. private System.Windows.Forms.Label label1;
  145. private System.Windows.Forms.TextBox gamelocation;
  146. private System.Windows.Forms.Button browsebtn;
  147. private System.Windows.Forms.Button savebtn;
  148. private System.Windows.Forms.Button cancelbtn;
  149. private System.Windows.Forms.CheckBox useProxy;
  150. private System.Windows.Forms.CheckBox autopatching;
  151. }
  152. }