📄 frmmain.designer.cs
字号:
namespace FileProject
{
partial class frmMain
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
this.lstFile = new System.Windows.Forms.ListView();
this.txtName = new System.Windows.Forms.TextBox();
this.btnCreate = new System.Windows.Forms.Button();
this.btnDelete = new System.Windows.Forms.Button();
this.btnRename = new System.Windows.Forms.Button();
this.imgFile = new System.Windows.Forms.ImageList(this.components);
this.SuspendLayout();
//
// lstFile
//
this.lstFile.LargeImageList = this.imgFile;
this.lstFile.Location = new System.Drawing.Point(0, 1);
this.lstFile.Name = "lstFile";
this.lstFile.Size = new System.Drawing.Size(289, 216);
this.lstFile.TabIndex = 0;
this.lstFile.UseCompatibleStateImageBehavior = false;
this.lstFile.DoubleClick += new System.EventHandler(this.lstFile_DoubleClick);
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(0, 223);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(289, 21);
this.txtName.TabIndex = 1;
//
// btnCreate
//
this.btnCreate.Location = new System.Drawing.Point(0, 250);
this.btnCreate.Name = "btnCreate";
this.btnCreate.Size = new System.Drawing.Size(75, 23);
this.btnCreate.TabIndex = 2;
this.btnCreate.Text = "创 建";
this.btnCreate.UseVisualStyleBackColor = true;
this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click);
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(107, 250);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(75, 23);
this.btnDelete.TabIndex = 3;
this.btnDelete.Text = "删 除";
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
//
// btnRename
//
this.btnRename.Location = new System.Drawing.Point(214, 250);
this.btnRename.Name = "btnRename";
this.btnRename.Size = new System.Drawing.Size(75, 23);
this.btnRename.TabIndex = 4;
this.btnRename.Text = "重命名";
this.btnRename.UseVisualStyleBackColor = true;
this.btnRename.Click += new System.EventHandler(this.btnRename_Click);
//
// imgFile
//
this.imgFile.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgFile.ImageStream")));
this.imgFile.TransparentColor = System.Drawing.Color.Transparent;
this.imgFile.Images.SetKeyName(0, "notepad.ICO");
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 281);
this.Controls.Add(this.btnRename);
this.Controls.Add(this.btnDelete);
this.Controls.Add(this.btnCreate);
this.Controls.Add(this.txtName);
this.Controls.Add(this.lstFile);
this.Name = "frmMain";
this.Text = "FileProject";
this.Load += new System.EventHandler(this.frmMain_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListView lstFile;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Button btnCreate;
private System.Windows.Forms.Button btnDelete;
private System.Windows.Forms.Button btnRename;
private System.Windows.Forms.ImageList imgFile;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -