CodeWalker/Tools/ExtractKeysForm.Designer.cs

160 lines
7.7 KiB
C#

namespace CodeWalker
{
partial class ExtractKeysForm
{
/// <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(ExtractKeysForm));
this.BeginButton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.FolderBrowseButton = new System.Windows.Forms.Button();
this.FolderTextBox = new System.Windows.Forms.TextBox();
this.StatusLabel = new System.Windows.Forms.Label();
this.FolderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
this.label2 = new System.Windows.Forms.Label();
this.ExeBrowseButton = new System.Windows.Forms.Button();
this.ExeTextBox = new System.Windows.Forms.TextBox();
this.OpenFileDialog = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// BeginButton
//
this.BeginButton.Location = new System.Drawing.Point(98, 89);
this.BeginButton.Name = "BeginButton";
this.BeginButton.Size = new System.Drawing.Size(75, 23);
this.BeginButton.TabIndex = 60;
this.BeginButton.Text = "Begin";
this.BeginButton.UseVisualStyleBackColor = true;
this.BeginButton.Click += new System.EventHandler(this.BeginButton_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(20, 28);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(68, 13);
this.label1.TabIndex = 59;
this.label1.Text = "GTAV folder:";
//
// FolderBrowseButton
//
this.FolderBrowseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.FolderBrowseButton.Location = new System.Drawing.Point(449, 23);
this.FolderBrowseButton.Name = "FolderBrowseButton";
this.FolderBrowseButton.Size = new System.Drawing.Size(27, 23);
this.FolderBrowseButton.TabIndex = 58;
this.FolderBrowseButton.Text = "...";
this.FolderBrowseButton.UseVisualStyleBackColor = true;
this.FolderBrowseButton.Click += new System.EventHandler(this.FolderBrowseButton_Click);
//
// FolderTextBox
//
this.FolderTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.FolderTextBox.Location = new System.Drawing.Point(98, 25);
this.FolderTextBox.Name = "FolderTextBox";
this.FolderTextBox.ReadOnly = true;
this.FolderTextBox.Size = new System.Drawing.Size(345, 20);
this.FolderTextBox.TabIndex = 57;
//
// StatusLabel
//
this.StatusLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.StatusLabel.AutoEllipsis = true;
this.StatusLabel.Location = new System.Drawing.Point(20, 139);
this.StatusLabel.Name = "StatusLabel";
this.StatusLabel.Size = new System.Drawing.Size(474, 125);
this.StatusLabel.TabIndex = 61;
this.StatusLabel.Text = "Keys not loaded - Browse for the main GTAV folder and click Begin...";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(20, 54);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(59, 13);
this.label2.TabIndex = 64;
this.label2.Text = "GTAV exe:";
//
// ExeBrowseButton
//
this.ExeBrowseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.ExeBrowseButton.Location = new System.Drawing.Point(449, 49);
this.ExeBrowseButton.Name = "ExeBrowseButton";
this.ExeBrowseButton.Size = new System.Drawing.Size(27, 23);
this.ExeBrowseButton.TabIndex = 63;
this.ExeBrowseButton.Text = "...";
this.ExeBrowseButton.UseVisualStyleBackColor = true;
this.ExeBrowseButton.Click += new System.EventHandler(this.ExeBrowseButton_Click);
//
// ExeTextBox
//
this.ExeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.ExeTextBox.Location = new System.Drawing.Point(98, 51);
this.ExeTextBox.Name = "ExeTextBox";
this.ExeTextBox.Size = new System.Drawing.Size(345, 20);
this.ExeTextBox.TabIndex = 62;
//
// ExtractKeysForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(518, 273);
this.Controls.Add(this.label2);
this.Controls.Add(this.ExeBrowseButton);
this.Controls.Add(this.ExeTextBox);
this.Controls.Add(this.StatusLabel);
this.Controls.Add(this.BeginButton);
this.Controls.Add(this.label1);
this.Controls.Add(this.FolderBrowseButton);
this.Controls.Add(this.FolderTextBox);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "ExtractKeysForm";
this.Text = "ExtractKeysForm";
this.Load += new System.EventHandler(this.ExtractKeysForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button BeginButton;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button FolderBrowseButton;
private System.Windows.Forms.TextBox FolderTextBox;
private System.Windows.Forms.Label StatusLabel;
private System.Windows.Forms.FolderBrowserDialog FolderBrowserDialog;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button ExeBrowseButton;
private System.Windows.Forms.TextBox ExeTextBox;
private System.Windows.Forms.OpenFileDialog OpenFileDialog;
}
}