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

93 lines
3.7 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));
2022-01-12 06:51:31 +13:00
this.lblProgress = new System.Windows.Forms.Label();
this.lblStatus = new System.Windows.Forms.Label();
this.lblFilename = new System.Windows.Forms.Label();
this.btnAction = new System.Windows.Forms.Button();
2015-09-02 05:37:54 +12:00
this.pbProgress = new ShareX.HelpersLib.BlackStyleProgressBar();
2013-11-03 23:53:49 +13:00
this.SuspendLayout();
//
// lblProgress
//
resources.ApplyResources(this.lblProgress, "lblProgress");
2013-11-03 23:53:49 +13:00
this.lblProgress.Name = "lblProgress";
//
// lblStatus
//
resources.ApplyResources(this.lblStatus, "lblStatus");
2013-11-03 23:53:49 +13:00
this.lblStatus.Name = "lblStatus";
//
// lblFilename
//
resources.ApplyResources(this.lblFilename, "lblFilename");
2013-11-03 23:53:49 +13:00
this.lblFilename.Name = "lblFilename";
//
// btnAction
//
resources.ApplyResources(this.btnAction, "btnAction");
2013-11-03 23:53:49 +13:00
this.btnAction.Name = "btnAction";
2022-01-12 06:51:31 +13:00
this.btnAction.UseVisualStyleBackColor = true;
2013-11-03 23:53:49 +13:00
this.btnAction.MouseClick += new System.Windows.Forms.MouseEventHandler(this.btnAction_MouseClick);
//
// pbProgress
//
resources.ApplyResources(this.pbProgress, "pbProgress");
2013-11-03 23:53:49 +13:00
this.pbProgress.Name = "pbProgress";
//
2014-05-10 12:23:47 +12:00
// DownloaderForm
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this, "$this");
2020-07-11 23:01:01 +12:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
2022-01-12 06:51:31 +13:00
this.BackColor = System.Drawing.SystemColors.Window;
2013-11-03 23:53:49 +13:00
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;
2022-01-12 06:51:31 +13:00
private System.Windows.Forms.Button btnAction;
private System.Windows.Forms.Label lblFilename;
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.Label lblProgress;
2013-11-03 23:53:49 +13:00
}
}