namespace FileSend
{
partial class PullFilePanel
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.button_Push = new Button();
this.label5 = new Label();
this.label4 = new Label();
this.label_PushProgress = new Label();
this.progressBar_PushProgress = new ProgressBar();
this.listView_Log = new ListView();
this.button_OpenLogFile = new Button();
this.button_Clear = new Button();
this.label1 = new Label();
this.button_Setting = new Button();
this.listView_Files = new ListView();
this.button_ChooseFile = new Button();
this.SuspendLayout();
//
// button_Push
//
this.button_Push.Location = new Point(181, 38);
this.button_Push.Name = "button_Push";
this.button_Push.Size = new Size(69, 23);
this.button_Push.TabIndex = 30;
this.button_Push.Text = "下载选中";
this.button_Push.UseVisualStyleBackColor = true;
this.button_Push.Click += this.button_Push_Click;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new Point(85, 10);
this.label5.Name = "label5";
this.label5.Size = new Size(56, 17);
this.label5.TabIndex = 29;
this.label5.Text = "文件列表";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new Point(467, 10);
this.label4.Name = "label4";
this.label4.Size = new Size(56, 17);
this.label4.TabIndex = 28;
this.label4.Text = "日志输出";
//
// label_PushProgress
//
this.label_PushProgress.AutoSize = true;
this.label_PushProgress.Location = new Point(175, 412);
this.label_PushProgress.Name = "label_PushProgress";
this.label_PushProgress.Size = new Size(176, 17);
this.label_PushProgress.TabIndex = 27;
this.label_PushProgress.Text = "进度:10%;速度:1024MB/s";
this.label_PushProgress.TextAlign = ContentAlignment.MiddleCenter;
//
// progressBar_PushProgress
//
this.progressBar_PushProgress.Location = new Point(85, 431);
this.progressBar_PushProgress.Name = "progressBar_PushProgress";
this.progressBar_PushProgress.Size = new Size(354, 10);
this.progressBar_PushProgress.TabIndex = 26;
//
// listView_Log
//
this.listView_Log.Location = new Point(467, 67);
this.listView_Log.Name = "listView_Log";
this.listView_Log.Size = new Size(321, 362);
this.listView_Log.TabIndex = 25;
this.listView_Log.UseCompatibleStateImageBehavior = false;
this.listView_Log.View = View.List;
this.listView_Log.SelectedIndexChanged += this.listView_Log_SelectedIndexChanged;
//
// button_OpenLogFile
//
this.button_OpenLogFile.Location = new Point(523, 38);
this.button_OpenLogFile.Name = "button_OpenLogFile";
this.button_OpenLogFile.Size = new Size(95, 23);
this.button_OpenLogFile.TabIndex = 24;
this.button_OpenLogFile.Text = "打开日志文件";
this.button_OpenLogFile.UseVisualStyleBackColor = true;
this.button_OpenLogFile.Click += this.button_OpenLogFile_Click;
//
// button_Clear
//
this.button_Clear.Location = new Point(467, 38);
this.button_Clear.Name = "button_Clear";
this.button_Clear.Size = new Size(50, 23);
this.button_Clear.TabIndex = 23;
this.button_Clear.Text = "清空";
this.button_Clear.UseVisualStyleBackColor = true;
this.button_Clear.Click += this.button_Clear_Click;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new Point(256, 41);
this.label1.Name = "label1";
this.label1.Size = new Size(113, 17);
this.label1.TabIndex = 22;
this.label1.Text = "共选择了100个文件";
//
// button_Setting
//
this.button_Setting.Location = new Point(12, 13);
this.button_Setting.Name = "button_Setting";
this.button_Setting.Size = new Size(50, 23);
this.button_Setting.TabIndex = 21;
this.button_Setting.Text = "设置";
this.button_Setting.UseVisualStyleBackColor = true;
this.button_Setting.Click += this.button_Setting_Click;
//
// listView_Files
//
this.listView_Files.Location = new Point(85, 67);
this.listView_Files.Name = "listView_Files";
this.listView_Files.Size = new Size(354, 342);
this.listView_Files.TabIndex = 20;
this.listView_Files.UseCompatibleStateImageBehavior = false;
this.listView_Files.View = View.List;
this.listView_Files.SelectedIndexChanged += this.listView_Files_SelectedIndexChanged;
//
// button_ChooseFile
//
this.button_ChooseFile.Location = new Point(85, 38);
this.button_ChooseFile.Name = "button_ChooseFile";
this.button_ChooseFile.Size = new Size(90, 23);
this.button_ChooseFile.TabIndex = 19;
this.button_ChooseFile.Text = "获取文件列表";
this.button_ChooseFile.UseVisualStyleBackColor = true;
this.button_ChooseFile.Click += this.button_ChooseFile_Click;
//
// PullFilePanel
//
this.AutoScaleDimensions = new SizeF(7F, 17F);
this.AutoScaleMode = AutoScaleMode.Font;
this.ClientSize = new Size(800, 450);
this.Controls.Add(this.button_Push);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label_PushProgress);
this.Controls.Add(this.progressBar_PushProgress);
this.Controls.Add(this.listView_Log);
this.Controls.Add(this.button_OpenLogFile);
this.Controls.Add(this.button_Clear);
this.Controls.Add(this.label1);
this.Controls.Add(this.button_Setting);
this.Controls.Add(this.listView_Files);
this.Controls.Add(this.button_ChooseFile);
this.Name = "PullFilePanel";
this.Text = "下载文件";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Button button_Push;
private Label label5;
private Label label4;
private Label label_PushProgress;
private ProgressBar progressBar_PushProgress;
private ListView listView_Log;
private Button button_OpenLogFile;
private Button button_Clear;
private Label label1;
private Button button_Setting;
private ListView listView_Files;
private Button button_ChooseFile;
}
}