110 lines
4.1 KiB
C#
110 lines
4.1 KiB
C#
namespace Lskj.PubUtils.Upload
|
|
{
|
|
partial class frmUpload
|
|
{
|
|
/// <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.lblTime = new System.Windows.Forms.Label();
|
|
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
|
this.lblSpeed = new System.Windows.Forms.Label();
|
|
this.lblState = new System.Windows.Forms.Label();
|
|
this.lblFile = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblTime
|
|
//
|
|
this.lblTime.AutoSize = true;
|
|
this.lblTime.Location = new System.Drawing.Point(13, 31);
|
|
this.lblTime.Name = "lblTime";
|
|
this.lblTime.Size = new System.Drawing.Size(47, 12);
|
|
this.lblTime.TabIndex = 0;
|
|
this.lblTime.Text = "已用时:";
|
|
//
|
|
// progressBar1
|
|
//
|
|
this.progressBar1.Location = new System.Drawing.Point(13, 98);
|
|
this.progressBar1.Name = "progressBar1";
|
|
this.progressBar1.Size = new System.Drawing.Size(346, 23);
|
|
this.progressBar1.TabIndex = 1;
|
|
//
|
|
// lblSpeed
|
|
//
|
|
this.lblSpeed.AutoSize = true;
|
|
this.lblSpeed.Location = new System.Drawing.Point(13, 53);
|
|
this.lblSpeed.Name = "lblSpeed";
|
|
this.lblSpeed.Size = new System.Drawing.Size(59, 12);
|
|
this.lblSpeed.TabIndex = 2;
|
|
this.lblSpeed.Text = "平均速度:";
|
|
//
|
|
// lblState
|
|
//
|
|
this.lblState.AutoSize = true;
|
|
this.lblState.Location = new System.Drawing.Point(13, 74);
|
|
this.lblState.Name = "lblState";
|
|
this.lblState.Size = new System.Drawing.Size(47, 12);
|
|
this.lblState.TabIndex = 3;
|
|
this.lblState.Text = "已上传:";
|
|
//
|
|
// lblFile
|
|
//
|
|
this.lblFile.AutoSize = true;
|
|
this.lblFile.Location = new System.Drawing.Point(13, 10);
|
|
this.lblFile.Name = "lblFile";
|
|
this.lblFile.Size = new System.Drawing.Size(35, 12);
|
|
this.lblFile.TabIndex = 4;
|
|
this.lblFile.Text = "文件:";
|
|
//
|
|
// frmUpload
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(375, 135);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.lblFile);
|
|
this.Controls.Add(this.lblState);
|
|
this.Controls.Add(this.lblSpeed);
|
|
this.Controls.Add(this.progressBar1);
|
|
this.Controls.Add(this.lblTime);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Name = "frmUpload";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "上传进度";
|
|
this.TopMost = true;
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lblTime;
|
|
private System.Windows.Forms.ProgressBar progressBar1;
|
|
private System.Windows.Forms.Label lblSpeed;
|
|
private System.Windows.Forms.Label lblState;
|
|
private System.Windows.Forms.Label lblFile;
|
|
}
|
|
} |