125 lines
4.7 KiB
C#
125 lines
4.7 KiB
C#
namespace AIMSAutoUpdate
|
||
{
|
||
partial class frmAutoUpdate
|
||
{
|
||
/// <summary>
|
||
/// 必需的设计器变量。
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// 清理所有正在使用的资源。
|
||
/// </summary>
|
||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Windows 窗体设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.components = new System.ComponentModel.Container();
|
||
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.label4 = new System.Windows.Forms.Label();
|
||
this.label5 = new System.Windows.Forms.Label();
|
||
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
||
this.timer2 = new System.Windows.Forms.Timer(this.components);
|
||
this.SuspendLayout();
|
||
//
|
||
// progressBar1
|
||
//
|
||
this.progressBar1.Location = new System.Drawing.Point(0, 56);
|
||
this.progressBar1.Name = "progressBar1";
|
||
this.progressBar1.Size = new System.Drawing.Size(367, 23);
|
||
this.progressBar1.TabIndex = 9;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(9, 26);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(105, 14);
|
||
this.label1.TabIndex = 1;
|
||
this.label1.Text = "更新文件总数:";
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(173, 26);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(77, 14);
|
||
this.label2.TabIndex = 2;
|
||
this.label2.Text = "已下载数:";
|
||
//
|
||
// label4
|
||
//
|
||
this.label4.AutoSize = true;
|
||
this.label4.Location = new System.Drawing.Point(107, 26);
|
||
this.label4.Name = "label4";
|
||
this.label4.Size = new System.Drawing.Size(0, 14);
|
||
this.label4.TabIndex = 4;
|
||
//
|
||
// label5
|
||
//
|
||
this.label5.AutoSize = true;
|
||
this.label5.Location = new System.Drawing.Point(253, 26);
|
||
this.label5.Name = "label5";
|
||
this.label5.Size = new System.Drawing.Size(0, 14);
|
||
this.label5.TabIndex = 5;
|
||
//
|
||
// timer1
|
||
//
|
||
this.timer1.Tick += new System.EventHandler(this.timer1_Tick_1);
|
||
//
|
||
// timer2
|
||
//
|
||
this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
|
||
//
|
||
// frmAutoUpdate
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(362, 79);
|
||
this.ControlBox = false;
|
||
this.Controls.Add(this.label5);
|
||
this.Controls.Add(this.label4);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.progressBar1);
|
||
this.Font = new System.Drawing.Font("宋体", 10.5F);
|
||
this.MaximizeBox = false;
|
||
this.MinimizeBox = false;
|
||
this.Name = "frmAutoUpdate";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
this.Text = "自动升级程序";
|
||
this.Load += new System.EventHandler(this.frmAutoUpdate_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.ProgressBar progressBar1;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Label label4;
|
||
private System.Windows.Forms.Label label5;
|
||
private System.Windows.Forms.Timer timer1;
|
||
private System.Windows.Forms.Timer timer2;
|
||
}
|
||
}
|
||
|