📄 form1.designer.cs
字号:
namespace FtpWebLink
{
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.buttonLink = new System.Windows.Forms.Button();
this.buttonOpemDirect = new System.Windows.Forms.Button();
this.buttonFileDown = new System.Windows.Forms.Button();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.listBox1 = new System.Windows.Forms.ListBox();
this.labelServer = new System.Windows.Forms.Label();
this.labeluser = new System.Windows.Forms.Label();
this.labelPasswprd = new System.Windows.Forms.Label();
this.textBoxServer = new System.Windows.Forms.TextBox();
this.textBoxpassword = new System.Windows.Forms.TextBox();
this.textBoxUser = new System.Windows.Forms.TextBox();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.SuspendLayout();
//
// buttonLink
//
this.buttonLink.Location = new System.Drawing.Point(451, 13);
this.buttonLink.Name = "buttonLink";
this.buttonLink.Size = new System.Drawing.Size(75, 23);
this.buttonLink.TabIndex = 0;
this.buttonLink.Text = "linkNet";
this.buttonLink.UseVisualStyleBackColor = true;
this.buttonLink.Click += new System.EventHandler(this.buttonLink_Click);
//
// buttonOpemDirect
//
this.buttonOpemDirect.Enabled = false;
this.buttonOpemDirect.Location = new System.Drawing.Point(451, 42);
this.buttonOpemDirect.Name = "buttonOpemDirect";
this.buttonOpemDirect.Size = new System.Drawing.Size(75, 23);
this.buttonOpemDirect.TabIndex = 1;
this.buttonOpemDirect.Text = "openDirect";
this.buttonOpemDirect.UseVisualStyleBackColor = true;
this.buttonOpemDirect.Click += new System.EventHandler(this.buttonOpemDirect_Click);
//
// buttonFileDown
//
this.buttonFileDown.Enabled = false;
this.buttonFileDown.Location = new System.Drawing.Point(451, 71);
this.buttonFileDown.Name = "buttonFileDown";
this.buttonFileDown.Size = new System.Drawing.Size(75, 23);
this.buttonFileDown.TabIndex = 2;
this.buttonFileDown.Text = "downFile";
this.buttonFileDown.UseVisualStyleBackColor = true;
this.buttonFileDown.Click += new System.EventHandler(this.buttonFileDown_Click);
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(348, 188);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(78, 16);
this.checkBox1.TabIndex = 3;
this.checkBox1.Text = "checkBox1";
this.checkBox1.UseVisualStyleBackColor = true;
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 12;
this.listBox1.Location = new System.Drawing.Point(12, 13);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(120, 208);
this.listBox1.TabIndex = 4;
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndex);
//
// labelServer
//
this.labelServer.AutoSize = true;
this.labelServer.Location = new System.Drawing.Point(147, 16);
this.labelServer.Name = "labelServer";
this.labelServer.Size = new System.Drawing.Size(41, 12);
this.labelServer.TabIndex = 5;
this.labelServer.Text = "server";
//
// labeluser
//
this.labeluser.AutoSize = true;
this.labeluser.Location = new System.Drawing.Point(147, 38);
this.labeluser.Name = "labeluser";
this.labeluser.Size = new System.Drawing.Size(53, 12);
this.labeluser.TabIndex = 6;
this.labeluser.Text = "username";
//
// labelPasswprd
//
this.labelPasswprd.AutoSize = true;
this.labelPasswprd.Location = new System.Drawing.Point(147, 68);
this.labelPasswprd.Name = "labelPasswprd";
this.labelPasswprd.Size = new System.Drawing.Size(53, 12);
this.labelPasswprd.TabIndex = 7;
this.labelPasswprd.Text = "password";
//
// textBoxServer
//
this.textBoxServer.Location = new System.Drawing.Point(240, 7);
this.textBoxServer.Name = "textBoxServer";
this.textBoxServer.Size = new System.Drawing.Size(186, 21);
this.textBoxServer.TabIndex = 8;
this.textBoxServer.Text = "ftp://10.3.164.133";
//
// textBoxpassword
//
this.textBoxpassword.Location = new System.Drawing.Point(240, 71);
this.textBoxpassword.Name = "textBoxpassword";
this.textBoxpassword.Size = new System.Drawing.Size(186, 21);
this.textBoxpassword.TabIndex = 9;
this.textBoxpassword.Text = "123456";
this.textBoxpassword.UseSystemPasswordChar = true;
//
// textBoxUser
//
this.textBoxUser.Location = new System.Drawing.Point(240, 42);
this.textBoxUser.Name = "textBoxUser";
this.textBoxUser.Size = new System.Drawing.Size(186, 21);
this.textBoxUser.TabIndex = 10;
this.textBoxUser.Text = "zhujun";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(586, 282);
this.Controls.Add(this.textBoxUser);
this.Controls.Add(this.textBoxpassword);
this.Controls.Add(this.textBoxServer);
this.Controls.Add(this.labelPasswprd);
this.Controls.Add(this.labeluser);
this.Controls.Add(this.labelServer);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.checkBox1);
this.Controls.Add(this.buttonFileDown);
this.Controls.Add(this.buttonOpemDirect);
this.Controls.Add(this.buttonLink);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonLink;
private System.Windows.Forms.Button buttonOpemDirect;
private System.Windows.Forms.Button buttonFileDown;
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Label labelServer;
private System.Windows.Forms.Label labeluser;
private System.Windows.Forms.Label labelPasswprd;
private System.Windows.Forms.TextBox textBoxServer;
private System.Windows.Forms.TextBox textBoxpassword;
private System.Windows.Forms.TextBox textBoxUser;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -