2025-03-28 09:49:56 +08:00

164 lines
7.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace FileDownload
{
partial class FileDownload
{
/// <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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileDownload));
this.listView1 = new System.Windows.Forms.ListView();
this.HeadName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.headDownloadpath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.headSavepath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.btnStart = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.lblPercent = new System.Windows.Forms.Label();
this.Probar = new System.Windows.Forms.ProgressBar();
this.lblProInfo = new System.Windows.Forms.Label();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.HeadName,
this.headDownloadpath,
this.headSavepath});
this.listView1.Dock = System.Windows.Forms.DockStyle.Top;
this.listView1.Location = new System.Drawing.Point(0, 0);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(626, 178);
this.listView1.TabIndex = 0;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
//
// HeadName
//
this.HeadName.Text = "文件名称";
this.HeadName.Width = 181;
//
// headDownloadpath
//
this.headDownloadpath.Text = "下载地址";
this.headDownloadpath.Width = 346;
//
// headSavepath
//
this.headSavepath.Text = "保存路径";
this.headSavepath.Width = 130;
//
// btnStart
//
this.btnStart.Location = new System.Drawing.Point(511, 300);
this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(103, 45);
this.btnStart.TabIndex = 1;
this.btnStart.Text = "手动下载";
this.btnStart.UseVisualStyleBackColor = true;
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.lblPercent);
this.groupBox1.Controls.Add(this.Probar);
this.groupBox1.Controls.Add(this.lblProInfo);
this.groupBox1.Location = new System.Drawing.Point(12, 184);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(602, 100);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "下载进度信息";
//
// lblPercent
//
this.lblPercent.AutoSize = true;
this.lblPercent.Location = new System.Drawing.Point(540, 59);
this.lblPercent.Name = "lblPercent";
this.lblPercent.Size = new System.Drawing.Size(17, 12);
this.lblPercent.TabIndex = 2;
this.lblPercent.Text = "0%";
//
// Probar
//
this.Probar.Location = new System.Drawing.Point(22, 55);
this.Probar.Name = "Probar";
this.Probar.Size = new System.Drawing.Size(497, 23);
this.Probar.TabIndex = 1;
//
// lblProInfo
//
this.lblProInfo.AutoSize = true;
this.lblProInfo.Location = new System.Drawing.Point(20, 28);
this.lblProInfo.Name = "lblProInfo";
this.lblProInfo.Size = new System.Drawing.Size(89, 12);
this.lblProInfo.TabIndex = 0;
this.lblProInfo.Text = "正在下载......";
//
// notifyIcon1
//
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
this.notifyIcon1.Text = "系统日志自动更新";
this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
//
// FileDownload
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(626, 361);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnStart);
this.Controls.Add(this.listView1);
this.Name = "FileDownload";
this.Text = "文件下载";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FileDownload_FormClosing);
this.Load += new System.EventHandler(this.FileDownload_Load);
this.SizeChanged += new System.EventHandler(this.Recorder_SizeChanged);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader HeadName;
private System.Windows.Forms.ColumnHeader headDownloadpath;
private System.Windows.Forms.ColumnHeader headSavepath;
private System.Windows.Forms.Button btnStart;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ProgressBar Probar;
private System.Windows.Forms.Label lblProInfo;
private System.Windows.Forms.Label lblPercent;
private System.Windows.Forms.NotifyIcon notifyIcon1;
}
}