namespace PatchDownloader
{
partial class fPatchDownloader
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.pbDownloading = new System.Windows.Forms.ProgressBar();
this.bDownload = new System.Windows.Forms.Button();
this.tbDownloadDirectory = new System.Windows.Forms.TextBox();
this.tbMinVersion = new System.Windows.Forms.TextBox();
this.lMinVersion = new System.Windows.Forms.Label();
this.lStatus = new System.Windows.Forms.Label();
this.bChooseDownloadDirectory = new System.Windows.Forms.Button();
this.bExtractAll = new System.Windows.Forms.Button();
this.lLocale = new System.Windows.Forms.Label();
this.cbLocale = new System.Windows.Forms.ComboBox();
this.bCopyBins = new System.Windows.Forms.Button();
this.bCheckPDB = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// pbDownloading
//
this.pbDownloading.Location = new System.Drawing.Point(12, 38);
this.pbDownloading.Name = "pbDownloading";
this.pbDownloading.Size = new System.Drawing.Size(460, 23);
this.pbDownloading.TabIndex = 0;
//
// bDownload
//
this.bDownload.Location = new System.Drawing.Point(316, 64);
this.bDownload.Name = "bDownload";
this.bDownload.Size = new System.Drawing.Size(75, 23);
this.bDownload.TabIndex = 1;
this.bDownload.Text = "Download";
this.bDownload.UseVisualStyleBackColor = true;
this.bDownload.Click += new System.EventHandler(this.bDownload_Click);
//
// tbDownloadDirectory
//
this.tbDownloadDirectory.Location = new System.Drawing.Point(12, 12);
this.tbDownloadDirectory.Name = "tbDownloadDirectory";
this.tbDownloadDirectory.Size = new System.Drawing.Size(379, 20);
this.tbDownloadDirectory.TabIndex = 2;
//
// tbMinVersion
//
this.tbMinVersion.Location = new System.Drawing.Point(210, 66);
this.tbMinVersion.Name = "tbMinVersion";
this.tbMinVersion.Size = new System.Drawing.Size(100, 20);
this.tbMinVersion.TabIndex = 3;
//
// lMinVersion
//
this.lMinVersion.AutoSize = true;
this.lMinVersion.Location = new System.Drawing.Point(142, 69);
this.lMinVersion.Name = "lMinVersion";
this.lMinVersion.Size = new System.Drawing.Size(62, 13);
this.lMinVersion.TabIndex = 4;
this.lMinVersion.Text = "Min Version";
//
// lStatus
//
this.lStatus.Location = new System.Drawing.Point(12, 98);
this.lStatus.Name = "lStatus";
this.lStatus.Size = new System.Drawing.Size(298, 13);
this.lStatus.TabIndex = 5;
this.lStatus.Text = "Please select a directory and click Download";
//
// bChooseDownloadDirectory
//
this.bChooseDownloadDirectory.Location = new System.Drawing.Point(397, 12);
this.bChooseDownloadDirectory.Name = "bChooseDownloadDirectory";
this.bChooseDownloadDirectory.Size = new System.Drawing.Size(75, 23);
this.bChooseDownloadDirectory.TabIndex = 6;
this.bChooseDownloadDirectory.Text = "Choose";
this.bChooseDownloadDirectory.UseVisualStyleBackColor = true;
this.bChooseDownloadDirectory.Click += new System.EventHandler(this.bChooseDownloadDirectory_Click);
//
// bExtractAll
//
this.bExtractAll.Location = new System.Drawing.Point(397, 64);
this.bExtractAll.Name = "bExtractAll";
this.bExtractAll.Size = new System.Drawing.Size(75, 23);
this.bExtractAll.TabIndex = 7;
this.bExtractAll.Text = "Extract All";
this.bExtractAll.UseVisualStyleBackColor = true;
this.bExtractAll.Click += new System.EventHandler(this.bExtractAll_Click);
//
// lLocale
//
this.lLocale.AutoSize = true;
this.lLocale.Location = new System.Drawing.Point(27, 69);
this.lLocale.Name = "lLocale";
this.lLocale.Size = new System.Drawing.Size(39, 13);
this.lLocale.TabIndex = 8;
this.lLocale.Text = "Locale";
//
// cbLocale
//
this.cbLocale.FormattingEnabled = true;
this.cbLocale.Items.AddRange(new object[] {
"US",
"DE",
"EN",
"FR",
"ES"});
this.cbLocale.Location = new System.Drawing.Point(72, 67);
this.cbLocale.Name = "cbLocale";
this.cbLocale.Size = new System.Drawing.Size(64, 21);
this.cbLocale.TabIndex = 9;
this.cbLocale.Text = "US";
this.cbLocale.SelectedValueChanged += new System.EventHandler(this.cbLocale_SelectedValueChanged);
//
// bCopyBins
//
this.bCopyBins.Location = new System.Drawing.Point(397, 93);
this.bCopyBins.Name = "bCopyBins";
this.bCopyBins.Size = new System.Drawing.Size(75, 23);
this.bCopyBins.TabIndex = 10;
this.bCopyBins.Text = "Copy Bins";
this.bCopyBins.UseVisualStyleBackColor = true;
this.bCopyBins.Click += new System.EventHandler(this.bCopyBins_Click);
//
// bCheckPDB
//
this.bCheckPDB.Location = new System.Drawing.Point(316, 93);
this.bCheckPDB.Name = "bCheckPDB";
this.bCheckPDB.Size = new System.Drawing.Size(75, 23);
this.bCheckPDB.TabIndex = 11;
this.bCheckPDB.Text = "Check PDB";
this.bCheckPDB.UseVisualStyleBackColor = true;
this.bCheckPDB.Click += new System.EventHandler(this.bCheckPDB_Click);
//
// fPatchDownloader
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(484, 124);
this.Controls.Add(this.bCheckPDB);
this.Controls.Add(this.bCopyBins);
this.Controls.Add(this.cbLocale);
this.Controls.Add(this.lLocale);
this.Controls.Add(this.bExtractAll);
this.Controls.Add(this.bChooseDownloadDirectory);
this.Controls.Add(this.lStatus);
this.Controls.Add(this.lMinVersion);
this.Controls.Add(this.tbMinVersion);
this.Controls.Add(this.tbDownloadDirectory);
this.Controls.Add(this.bDownload);
this.Controls.Add(this.pbDownloading);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.Name = "fPatchDownloader";
this.Text = "Patch Downloader";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ProgressBar pbDownloading;
private System.Windows.Forms.Button bDownload;
private System.Windows.Forms.TextBox tbDownloadDirectory;
private System.Windows.Forms.TextBox tbMinVersion;
private System.Windows.Forms.Label lMinVersion;
private System.Windows.Forms.Label lStatus;
private System.Windows.Forms.Button bChooseDownloadDirectory;
private System.Windows.Forms.Button bExtractAll;
private System.Windows.Forms.Label lLocale;
private System.Windows.Forms.ComboBox cbLocale;
private System.Windows.Forms.Button bCopyBins;
private System.Windows.Forms.Button bCheckPDB;
}
}