ShareX/ShareX.HelpersLib/UpdateChecker/DownloaderForm.Designer.cs

105 lines
4.5 KiB
C#
Raw Normal View History

2014-12-11 09:25:20 +13:00
namespace ShareX.HelpersLib
2013-11-03 23:53:49 +13:00
{
2014-05-10 12:23:47 +12:00
partial class DownloaderForm
2013-11-03 23:53:49 +13:00
{
/// <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(DownloaderForm));
2015-09-02 05:37:54 +12:00
this.lblProgress = new ShareX.HelpersLib.BlackStyleLabel();
this.lblStatus = new ShareX.HelpersLib.BlackStyleLabel();
this.lblFilename = new ShareX.HelpersLib.BlackStyleLabel();
this.btnAction = new ShareX.HelpersLib.BlackStyleButton();
this.pbProgress = new ShareX.HelpersLib.BlackStyleProgressBar();
2013-11-03 23:53:49 +13:00
this.SuspendLayout();
//
// lblProgress
//
this.lblProgress.BackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.lblProgress, "lblProgress");
2013-11-03 23:53:49 +13:00
this.lblProgress.ForeColor = System.Drawing.Color.White;
this.lblProgress.Name = "lblProgress";
//
// lblStatus
//
this.lblStatus.BackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.lblStatus, "lblStatus");
2013-11-03 23:53:49 +13:00
this.lblStatus.ForeColor = System.Drawing.Color.White;
this.lblStatus.Name = "lblStatus";
//
// lblFilename
//
this.lblFilename.BackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.lblFilename, "lblFilename");
2013-11-03 23:53:49 +13:00
this.lblFilename.ForeColor = System.Drawing.Color.White;
this.lblFilename.Name = "lblFilename";
//
// btnAction
//
this.btnAction.BackColor = System.Drawing.Color.Transparent;
this.btnAction.Cursor = System.Windows.Forms.Cursors.Hand;
resources.ApplyResources(this.btnAction, "btnAction");
2013-11-03 23:53:49 +13:00
this.btnAction.ForeColor = System.Drawing.Color.White;
this.btnAction.Name = "btnAction";
this.btnAction.MouseClick += new System.Windows.Forms.MouseEventHandler(this.btnAction_MouseClick);
//
// pbProgress
//
this.pbProgress.BackColor = System.Drawing.Color.Transparent;
resources.ApplyResources(this.pbProgress, "pbProgress");
2013-11-03 23:53:49 +13:00
this.pbProgress.Maximum = 100;
this.pbProgress.Minimum = 0;
this.pbProgress.Name = "pbProgress";
this.pbProgress.Value = 0;
//
2014-05-10 12:23:47 +12:00
// DownloaderForm
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this, "$this");
2013-11-03 23:53:49 +13:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70)))));
this.Controls.Add(this.lblProgress);
this.Controls.Add(this.lblStatus);
this.Controls.Add(this.lblFilename);
this.Controls.Add(this.btnAction);
this.Controls.Add(this.pbProgress);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
2014-05-10 12:23:47 +12:00
this.Name = "DownloaderForm";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DownloaderForm_FormClosing);
2013-11-03 23:53:49 +13:00
this.Shown += new System.EventHandler(this.DownloaderForm_Shown);
this.ResumeLayout(false);
}
#endregion
2014-06-28 09:41:07 +12:00
private BlackStyleProgressBar pbProgress;
private BlackStyleButton btnAction;
private BlackStyleLabel lblFilename;
private BlackStyleLabel lblStatus;
private BlackStyleLabel lblProgress;
2013-11-03 23:53:49 +13:00
}
}