namespace AutoUpdate
|
|
{
|
|
partial class Update
|
|
{
|
|
/// <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.progressBarTotal = new System.Windows.Forms.ProgressBar();
|
|
this.progressBarCurrent = new System.Windows.Forms.ProgressBar();
|
|
this.labelCurrentItem = new System.Windows.Forms.Label();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.labelCurrent = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// progressBarTotal
|
|
//
|
|
this.progressBarTotal.Location = new System.Drawing.Point(28, 81);
|
|
this.progressBarTotal.Name = "progressBarTotal";
|
|
this.progressBarTotal.Size = new System.Drawing.Size(438, 12);
|
|
this.progressBarTotal.Step = 1;
|
|
this.progressBarTotal.TabIndex = 6;
|
|
//
|
|
// progressBarCurrent
|
|
//
|
|
this.progressBarCurrent.Location = new System.Drawing.Point(27, 42);
|
|
this.progressBarCurrent.Name = "progressBarCurrent";
|
|
this.progressBarCurrent.Size = new System.Drawing.Size(438, 12);
|
|
this.progressBarCurrent.Step = 1;
|
|
this.progressBarCurrent.TabIndex = 7;
|
|
//
|
|
// labelCurrentItem
|
|
//
|
|
this.labelCurrentItem.AutoSize = true;
|
|
this.labelCurrentItem.Location = new System.Drawing.Point(97, 27);
|
|
this.labelCurrentItem.Name = "labelCurrentItem";
|
|
this.labelCurrentItem.Size = new System.Drawing.Size(0, 12);
|
|
this.labelCurrentItem.TabIndex = 3;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(26, 66);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(53, 12);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "总进度:";
|
|
//
|
|
// labelCurrent
|
|
//
|
|
this.labelCurrent.AutoSize = true;
|
|
this.labelCurrent.Location = new System.Drawing.Point(26, 27);
|
|
this.labelCurrent.Name = "labelCurrent";
|
|
this.labelCurrent.Size = new System.Drawing.Size(65, 12);
|
|
this.labelCurrent.TabIndex = 5;
|
|
this.labelCurrent.Text = "正在下载:";
|
|
//
|
|
// Update
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(483, 134);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.progressBarTotal);
|
|
this.Controls.Add(this.progressBarCurrent);
|
|
this.Controls.Add(this.labelCurrentItem);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.labelCurrent);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Name = "Update";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "自动更新";
|
|
this.Load += new System.EventHandler(this.Update_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ProgressBar progressBarTotal;
|
|
private System.Windows.Forms.ProgressBar progressBarCurrent;
|
|
private System.Windows.Forms.Label labelCurrentItem;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label labelCurrent;
|
|
}
|
|
}
|