📄 form1.designer.cs
字号:
namespace Ftp客户端
{
partial class Form1
{
/// <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.ButtonConnect = new System.Windows.Forms.Button();
this.ButtonDisConnect = new System.Windows.Forms.Button();
this.buttonUpDir = new System.Windows.Forms.Button();
this.buttonDownload = new System.Windows.Forms.Button();
this.listBox1 = new System.Windows.Forms.ListBox();
this.listBox2 = new System.Windows.Forms.ListBox();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.listBox3 = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.listBox4 = new System.Windows.Forms.ListBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// ButtonConnect
//
this.ButtonConnect.Location = new System.Drawing.Point(106, 32);
this.ButtonConnect.Name = "ButtonConnect";
this.ButtonConnect.Size = new System.Drawing.Size(103, 25);
this.ButtonConnect.TabIndex = 0;
this.ButtonConnect.Text = "Connect";
this.ButtonConnect.Click += new System.EventHandler(this.ButtonConnect_Click);
//
// ButtonDisConnect
//
this.ButtonDisConnect.Location = new System.Drawing.Point(345, 32);
this.ButtonDisConnect.Name = "ButtonDisConnect";
this.ButtonDisConnect.Size = new System.Drawing.Size(103, 25);
this.ButtonDisConnect.TabIndex = 1;
this.ButtonDisConnect.Text = "Disconnect";
this.ButtonDisConnect.Click += new System.EventHandler(this.ButtonDisConnect_Click);
//
// buttonUpDir
//
this.buttonUpDir.Location = new System.Drawing.Point(106, 262);
this.buttonUpDir.Name = "buttonUpDir";
this.buttonUpDir.Size = new System.Drawing.Size(103, 25);
this.buttonUpDir.TabIndex = 2;
this.buttonUpDir.Text = "UpDir";
this.buttonUpDir.Click += new System.EventHandler(this.buttonUpDir_Click);
//
// buttonDownload
//
this.buttonDownload.Location = new System.Drawing.Point(278, 262);
this.buttonDownload.Name = "buttonDownload";
this.buttonDownload.Size = new System.Drawing.Size(103, 25);
this.buttonDownload.TabIndex = 3;
this.buttonDownload.Text = "Download";
this.buttonDownload.Click += new System.EventHandler(this.buttonDownload_Click);
//
// listBox1
//
this.listBox1.Location = new System.Drawing.Point(36, 81);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(244, 162);
this.listBox1.TabIndex = 4;
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
//
// listBox2
//
this.listBox2.Location = new System.Drawing.Point(328, 81);
this.listBox2.Name = "listBox2";
this.listBox2.Size = new System.Drawing.Size(244, 114);
this.listBox2.TabIndex = 5;
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(328, 216);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(244, 27);
//
// listBox3
//
this.listBox3.Location = new System.Drawing.Point(36, 304);
this.listBox3.Name = "listBox3";
this.listBox3.Size = new System.Drawing.Size(536, 146);
this.listBox3.TabIndex = 7;
//
// label1
//
this.label1.Location = new System.Drawing.Point(3, 56);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(86, 22);
this.label1.Text = "Dir";
//
// listBox4
//
this.listBox4.Location = new System.Drawing.Point(605, 82);
this.listBox4.Name = "listBox4";
this.listBox4.Size = new System.Drawing.Size(138, 226);
this.listBox4.TabIndex = 9;
//
// button1
//
this.button1.Location = new System.Drawing.Point(451, 262);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(89, 25);
this.button1.TabIndex = 10;
this.button1.Text = "Upload";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(627, 32);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(94, 25);
this.button2.TabIndex = 11;
this.button2.Text = "button2";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(757, 455);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.listBox4);
this.Controls.Add(this.label1);
this.Controls.Add(this.listBox3);
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.listBox2);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.buttonDownload);
this.Controls.Add(this.buttonUpDir);
this.Controls.Add(this.ButtonDisConnect);
this.Controls.Add(this.ButtonConnect);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button ButtonConnect;
private System.Windows.Forms.Button ButtonDisConnect;
private System.Windows.Forms.Button buttonUpDir;
private System.Windows.Forms.Button buttonDownload;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.ListBox listBox2;
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.ListBox listBox3;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ListBox listBox4;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -