⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.designer.cs

📁 这是.net2005学习不可缺少的教程
💻 CS
字号:
namespace FileManager
{
    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.components = new System.ComponentModel.Container();
            this.tb_CurPath = new System.Windows.Forms.TextBox();
            this.tb_Name = new System.Windows.Forms.TextBox();
            this.btn_Up = new System.Windows.Forms.Button();
            this.btn_CreateFolder = new System.Windows.Forms.Button();
            this.btn_CreateFile = new System.Windows.Forms.Button();
            this.lstFiles = new System.Windows.Forms.ListView();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.删除ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tb_CurPath
            // 
            this.tb_CurPath.Location = new System.Drawing.Point(12, 34);
            this.tb_CurPath.Name = "tb_CurPath";
            this.tb_CurPath.Size = new System.Drawing.Size(300, 20);
            this.tb_CurPath.TabIndex = 0;
            this.tb_CurPath.Text = "当前路径";
            // 
            // tb_Name
            // 
            this.tb_Name.Location = new System.Drawing.Point(13, 66);
            this.tb_Name.Name = "tb_Name";
            this.tb_Name.Size = new System.Drawing.Size(219, 20);
            this.tb_Name.TabIndex = 1;
            // 
            // btn_Up
            // 
            this.btn_Up.Location = new System.Drawing.Point(319, 34);
            this.btn_Up.Name = "btn_Up";
            this.btn_Up.Size = new System.Drawing.Size(75, 23);
            this.btn_Up.TabIndex = 2;
            this.btn_Up.Text = "向上";
            this.btn_Up.UseVisualStyleBackColor = true;
            this.btn_Up.Click += new System.EventHandler(this.btn_Up_Click);
            // 
            // btn_CreateFolder
            // 
            this.btn_CreateFolder.Location = new System.Drawing.Point(238, 63);
            this.btn_CreateFolder.Name = "btn_CreateFolder";
            this.btn_CreateFolder.Size = new System.Drawing.Size(75, 23);
            this.btn_CreateFolder.TabIndex = 3;
            this.btn_CreateFolder.Text = "创建目录";
            this.btn_CreateFolder.UseVisualStyleBackColor = true;
            this.btn_CreateFolder.Click += new System.EventHandler(this.btn_CreateFolder_Click);
            // 
            // btn_CreateFile
            // 
            this.btn_CreateFile.Location = new System.Drawing.Point(319, 63);
            this.btn_CreateFile.Name = "btn_CreateFile";
            this.btn_CreateFile.Size = new System.Drawing.Size(75, 23);
            this.btn_CreateFile.TabIndex = 4;
            this.btn_CreateFile.Text = "创建文件";
            this.btn_CreateFile.UseVisualStyleBackColor = true;
            this.btn_CreateFile.Click += new System.EventHandler(this.btn_CreateFile_Click);
            // 
            // lstFiles
            // 
            this.lstFiles.Location = new System.Drawing.Point(13, 92);
            this.lstFiles.Name = "lstFiles";
            this.lstFiles.Size = new System.Drawing.Size(381, 186);
            this.lstFiles.TabIndex = 5;
            this.lstFiles.UseCompatibleStateImageBehavior = false;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.删除ToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(153, 48);
            // 
            // 删除ToolStripMenuItem
            // 
            this.删除ToolStripMenuItem.Name = "删除ToolStripMenuItem";
            this.删除ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.删除ToolStripMenuItem.Text = "删除";
            this.删除ToolStripMenuItem.Click += new System.EventHandler(this.删除ToolStripMenuItem_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(406, 290);
            this.Controls.Add(this.lstFiles);
            this.Controls.Add(this.btn_CreateFile);
            this.Controls.Add(this.btn_CreateFolder);
            this.Controls.Add(this.btn_Up);
            this.Controls.Add(this.tb_Name);
            this.Controls.Add(this.tb_CurPath);
            this.Name = "Form1";
            this.Text = "简单文件管理器";
            this.contextMenuStrip1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TextBox tb_CurPath;
        private System.Windows.Forms.TextBox tb_Name;
        private System.Windows.Forms.Button btn_Up;
        private System.Windows.Forms.Button btn_CreateFolder;
        private System.Windows.Forms.Button btn_CreateFile;
        private System.Windows.Forms.ListView lstFiles;
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
        private System.Windows.Forms.ToolStripMenuItem 删除ToolStripMenuItem;

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -