|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- namespace GCMM
- {
- partial class SettingsForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
-
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
- this.label1 = new System.Windows.Forms.Label();
- this.gamelocation = new System.Windows.Forms.TextBox();
- this.browsebtn = new System.Windows.Forms.Button();
- this.savebtn = new System.Windows.Forms.Button();
- this.cancelbtn = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label1.Location = new System.Drawing.Point(12, 15);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(116, 20);
- this.label1.TabIndex = 0;
- this.label1.Text = "Game location:";
- //
- // gamelocation
- //
- this.gamelocation.Location = new System.Drawing.Point(135, 15);
- this.gamelocation.Name = "gamelocation";
- this.gamelocation.Size = new System.Drawing.Size(210, 20);
- this.gamelocation.TabIndex = 1;
- //
- // browsebtn
- //
- this.browsebtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.browsebtn.Location = new System.Drawing.Point(352, 12);
- this.browsebtn.Name = "browsebtn";
- this.browsebtn.Size = new System.Drawing.Size(75, 23);
- this.browsebtn.TabIndex = 2;
- this.browsebtn.Text = "Browse";
- this.browsebtn.UseVisualStyleBackColor = true;
- this.browsebtn.Click += new System.EventHandler(this.browsebtn_Click);
- //
- // savebtn
- //
- this.savebtn.DialogResult = System.Windows.Forms.DialogResult.OK;
- this.savebtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
- this.savebtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
- this.savebtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.savebtn.Location = new System.Drawing.Point(271, 74);
- this.savebtn.Name = "savebtn";
- this.savebtn.Size = new System.Drawing.Size(75, 23);
- this.savebtn.TabIndex = 3;
- this.savebtn.Text = "Save";
- this.savebtn.UseVisualStyleBackColor = true;
- this.savebtn.Click += new System.EventHandler(this.savebtn_Click);
- //
- // cancelbtn
- //
- this.cancelbtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.cancelbtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Green;
- this.cancelbtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(40)))), ((int)(((byte)(0)))));
- this.cancelbtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.cancelbtn.Location = new System.Drawing.Point(352, 74);
- this.cancelbtn.Name = "cancelbtn";
- this.cancelbtn.Size = new System.Drawing.Size(75, 23);
- this.cancelbtn.TabIndex = 4;
- this.cancelbtn.Text = "Cancel";
- this.cancelbtn.UseVisualStyleBackColor = true;
- this.cancelbtn.Click += new System.EventHandler(this.cancelbtn_Click);
- //
- // SettingsForm
- //
- this.AcceptButton = this.savebtn;
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Black;
- this.CancelButton = this.cancelbtn;
- this.ClientSize = new System.Drawing.Size(439, 109);
- this.Controls.Add(this.cancelbtn);
- this.Controls.Add(this.savebtn);
- this.Controls.Add(this.browsebtn);
- this.Controls.Add(this.gamelocation);
- this.Controls.Add(this.label1);
- this.ForeColor = System.Drawing.Color.Lime;
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "SettingsForm";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "Settings";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox gamelocation;
- private System.Windows.Forms.Button browsebtn;
- private System.Windows.Forms.Button savebtn;
- private System.Windows.Forms.Button cancelbtn;
- }
- }
-
|