98 lines
3.7 KiB
C#
98 lines
3.7 KiB
C#
namespace CheckDownload
|
||
{
|
||
partial class Update
|
||
{
|
||
/// <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.Update_Pro = new System.Windows.Forms.ProgressBar();
|
||
this.Status_Box = new System.Windows.Forms.Label();
|
||
this.Count_Box = new System.Windows.Forms.Label();
|
||
this.Size_Box = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// Update_Pro
|
||
//
|
||
this.Update_Pro.Location = new System.Drawing.Point(12, 36);
|
||
this.Update_Pro.Name = "Update_Pro";
|
||
this.Update_Pro.Size = new System.Drawing.Size(339, 23);
|
||
this.Update_Pro.TabIndex = 1;
|
||
//
|
||
// Status_Box
|
||
//
|
||
this.Status_Box.Location = new System.Drawing.Point(12, 12);
|
||
this.Status_Box.Name = "Status_Box";
|
||
this.Status_Box.Size = new System.Drawing.Size(148, 12);
|
||
this.Status_Box.TabIndex = 2;
|
||
this.Status_Box.Text = "...";
|
||
//
|
||
// Count_Box
|
||
//
|
||
this.Count_Box.Location = new System.Drawing.Point(296, 12);
|
||
this.Count_Box.Name = "Count_Box";
|
||
this.Count_Box.Size = new System.Drawing.Size(55, 13);
|
||
this.Count_Box.TabIndex = 3;
|
||
this.Count_Box.TextAlign = System.Drawing.ContentAlignment.TopRight;
|
||
//
|
||
// Size_Box
|
||
//
|
||
this.Size_Box.Location = new System.Drawing.Point(166, 12);
|
||
this.Size_Box.Name = "Size_Box";
|
||
this.Size_Box.Size = new System.Drawing.Size(130, 13);
|
||
this.Size_Box.TabIndex = 4;
|
||
this.Size_Box.TextAlign = System.Drawing.ContentAlignment.TopRight;
|
||
//
|
||
// Update
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(363, 73);
|
||
this.ControlBox = false;
|
||
this.Controls.Add(this.Size_Box);
|
||
this.Controls.Add(this.Count_Box);
|
||
this.Controls.Add(this.Status_Box);
|
||
this.Controls.Add(this.Update_Pro);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
||
this.MaximizeBox = false;
|
||
this.MinimizeBox = false;
|
||
this.Name = "Update";
|
||
this.ShowInTaskbar = false;
|
||
this.Text = "自动更新";
|
||
this.TopMost = true;
|
||
this.Load += new System.EventHandler(this.Update_Load);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
private System.Windows.Forms.ProgressBar Update_Pro;
|
||
private System.Windows.Forms.Label Status_Box;
|
||
private System.Windows.Forms.Label Count_Box;
|
||
private System.Windows.Forms.Label Size_Box;
|
||
}
|
||
}
|
||
|