98 lines
4.3 KiB
C#
98 lines
4.3 KiB
C#
namespace SaveWizard_rewritten
|
|
{
|
|
partial class UpdateForm
|
|
{
|
|
/// <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.lbl_downloading = new System.Windows.Forms.Label();
|
|
this.lbl_progress = new System.Windows.Forms.Label();
|
|
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
|
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
|
|
this.SuspendLayout();
|
|
//
|
|
// lbl_downloading
|
|
//
|
|
this.lbl_downloading.AutoSize = true;
|
|
this.lbl_downloading.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.lbl_downloading.Location = new System.Drawing.Point(12, 9);
|
|
this.lbl_downloading.Name = "lbl_downloading";
|
|
this.lbl_downloading.Size = new System.Drawing.Size(148, 18);
|
|
this.lbl_downloading.TabIndex = 0;
|
|
this.lbl_downloading.Text = "Downloading configs...";
|
|
//
|
|
// lbl_progress
|
|
//
|
|
this.lbl_progress.AutoSize = true;
|
|
this.lbl_progress.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.lbl_progress.Location = new System.Drawing.Point(166, 9);
|
|
this.lbl_progress.Name = "lbl_progress";
|
|
this.lbl_progress.Size = new System.Drawing.Size(28, 18);
|
|
this.lbl_progress.TabIndex = 1;
|
|
this.lbl_progress.Text = "0/6";
|
|
//
|
|
// progressBar1
|
|
//
|
|
this.progressBar1.Location = new System.Drawing.Point(12, 34);
|
|
this.progressBar1.Maximum = 6;
|
|
this.progressBar1.Name = "progressBar1";
|
|
this.progressBar1.Size = new System.Drawing.Size(182, 23);
|
|
this.progressBar1.TabIndex = 2;
|
|
//
|
|
// backgroundWorker1
|
|
//
|
|
this.backgroundWorker1.WorkerReportsProgress = true;
|
|
this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
|
|
this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
|
|
this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
|
|
//
|
|
// ProgressWindow
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(204, 66);
|
|
this.Controls.Add(this.progressBar1);
|
|
this.Controls.Add(this.lbl_progress);
|
|
this.Controls.Add(this.lbl_downloading);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "ProgressWindow";
|
|
this.Text = "Updating...";
|
|
this.Load += new System.EventHandler(this.ProgressWindow_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lbl_downloading;
|
|
private System.Windows.Forms.Label lbl_progress;
|
|
private System.Windows.Forms.ProgressBar progressBar1;
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker1;
|
|
}
|
|
} |