ShareX/ShareX.IndexerLib/Forms/DirectoryIndexerForm.Designer.cs

117 lines
5.2 KiB
C#
Raw Normal View History

2016-02-03 01:58:34 +13:00
namespace ShareX.IndexerLib
{
partial class DirectoryIndexerForm
{
/// <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()
{
this.wbMain = new System.Windows.Forms.WebBrowser();
this.txtFolderPath = new System.Windows.Forms.TextBox();
this.btnBrowseFolder = new System.Windows.Forms.Button();
this.btnIndexFolder = new System.Windows.Forms.Button();
this.btnUpload = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// wbMain
//
this.wbMain.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.wbMain.Location = new System.Drawing.Point(8, 64);
this.wbMain.MinimumSize = new System.Drawing.Size(20, 20);
this.wbMain.Name = "wbMain";
this.wbMain.Size = new System.Drawing.Size(696, 464);
this.wbMain.TabIndex = 0;
//
// txtFolderPath
//
this.txtFolderPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtFolderPath.Location = new System.Drawing.Point(192, 8);
this.txtFolderPath.Name = "txtFolderPath";
this.txtFolderPath.Size = new System.Drawing.Size(512, 20);
this.txtFolderPath.TabIndex = 1;
this.txtFolderPath.TextChanged += new System.EventHandler(this.txtFolderPath_TextChanged);
//
// btnBrowseFolder
//
this.btnBrowseFolder.Location = new System.Drawing.Point(8, 8);
this.btnBrowseFolder.Name = "btnBrowseFolder";
this.btnBrowseFolder.Size = new System.Drawing.Size(176, 23);
this.btnBrowseFolder.TabIndex = 2;
this.btnBrowseFolder.Text = "Browse folder...";
this.btnBrowseFolder.UseVisualStyleBackColor = true;
this.btnBrowseFolder.Click += new System.EventHandler(this.btnBrowseFolder_Click);
//
// btnIndexFolder
//
this.btnIndexFolder.Enabled = false;
this.btnIndexFolder.Location = new System.Drawing.Point(8, 32);
this.btnIndexFolder.Name = "btnIndexFolder";
this.btnIndexFolder.Size = new System.Drawing.Size(344, 23);
this.btnIndexFolder.TabIndex = 3;
this.btnIndexFolder.Text = "Index folder";
this.btnIndexFolder.UseVisualStyleBackColor = true;
this.btnIndexFolder.Click += new System.EventHandler(this.btnIndexFolder_Click);
//
// btnUpload
//
this.btnUpload.Enabled = false;
this.btnUpload.Location = new System.Drawing.Point(360, 32);
this.btnUpload.Name = "btnUpload";
this.btnUpload.Size = new System.Drawing.Size(344, 23);
this.btnUpload.TabIndex = 4;
this.btnUpload.Text = "Upload and close this window";
this.btnUpload.UseVisualStyleBackColor = true;
this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
//
// DirectoryIndexerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(714, 535);
this.Controls.Add(this.btnUpload);
this.Controls.Add(this.btnIndexFolder);
this.Controls.Add(this.btnBrowseFolder);
this.Controls.Add(this.txtFolderPath);
this.Controls.Add(this.wbMain);
this.Name = "DirectoryIndexerForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Directory indexer";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.WebBrowser wbMain;
private System.Windows.Forms.TextBox txtFolderPath;
private System.Windows.Forms.Button btnBrowseFolder;
private System.Windows.Forms.Button btnIndexFolder;
private System.Windows.Forms.Button btnUpload;
}
}