📄 ftpform.designer.cs
字号:
namespace ftpTransport
{
partial class ftpForm
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.lvLocal = new System.Windows.Forms.ListView();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.lvRemote = new System.Windows.Forms.ListView();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.lvLocal);
this.groupBox1.Location = new System.Drawing.Point(6, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(312, 348);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "本地文件监控";
//
// lvLocal
//
this.lvLocal.Location = new System.Drawing.Point(6, 20);
this.lvLocal.Name = "lvLocal";
this.lvLocal.Size = new System.Drawing.Size(298, 320);
this.lvLocal.TabIndex = 1;
this.lvLocal.UseCompatibleStateImageBehavior = false;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.lvRemote);
this.groupBox2.Location = new System.Drawing.Point(324, 12);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(315, 348);
this.groupBox2.TabIndex = 3;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "服务文件监控";
//
// lvRemote
//
this.lvRemote.Location = new System.Drawing.Point(6, 20);
this.lvRemote.Name = "lvRemote";
this.lvRemote.Size = new System.Drawing.Size(303, 320);
this.lvRemote.TabIndex = 1;
this.lvRemote.UseCompatibleStateImageBehavior = false;
//
// ftpForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(647, 381);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "ftpForm";
this.Text = "FTP监控窗体";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ftpForm_FormClosing);
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ListView lvLocal;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.ListView lvRemote;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -