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

📄 frmmain.designer.cs

📁 本代码用于在*.x文件中
💻 CS
字号:
namespace ReplaceStrInFiles
{
    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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
            this.label1 = new System.Windows.Forms.Label();
            this.txtFolderName = new System.Windows.Forms.TextBox();
            this.FolderDia = new System.Windows.Forms.FolderBrowserDialog();
            this.BtnFolderDia = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.txtOriginStr = new System.Windows.Forms.TextBox();
            this.txtTargetStr = new System.Windows.Forms.TextBox();
            this.BtnStartReplace = new System.Windows.Forms.Button();
            this.BtnQuickReplace = new System.Windows.Forms.Button();
            this.BtnModifyCoord = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 19);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(65, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "指定文件夹";
            // 
            // txtFolderName
            // 
            this.txtFolderName.Location = new System.Drawing.Point(76, 16);
            this.txtFolderName.Name = "txtFolderName";
            this.txtFolderName.Size = new System.Drawing.Size(151, 21);
            this.txtFolderName.TabIndex = 1;
            // 
            // BtnFolderDia
            // 
            this.BtnFolderDia.Location = new System.Drawing.Point(233, 14);
            this.BtnFolderDia.Name = "BtnFolderDia";
            this.BtnFolderDia.Size = new System.Drawing.Size(27, 23);
            this.BtnFolderDia.TabIndex = 2;
            this.BtnFolderDia.Text = "……";
            this.BtnFolderDia.UseVisualStyleBackColor = true;
            this.BtnFolderDia.Click += new System.EventHandler(this.BtnFolderDia_Click);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(17, 63);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(53, 12);
            this.label2.TabIndex = 3;
            this.label2.Text = "替换字符";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(38, 107);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(17, 12);
            this.label3.TabIndex = 4;
            this.label3.Text = "为";
            // 
            // txtOriginStr
            // 
            this.txtOriginStr.Location = new System.Drawing.Point(76, 60);
            this.txtOriginStr.Name = "txtOriginStr";
            this.txtOriginStr.Size = new System.Drawing.Size(197, 21);
            this.txtOriginStr.TabIndex = 5;
            // 
            // txtTargetStr
            // 
            this.txtTargetStr.Location = new System.Drawing.Point(76, 104);
            this.txtTargetStr.Name = "txtTargetStr";
            this.txtTargetStr.Size = new System.Drawing.Size(197, 21);
            this.txtTargetStr.TabIndex = 6;
            // 
            // BtnStartReplace
            // 
            this.BtnStartReplace.Location = new System.Drawing.Point(12, 146);
            this.BtnStartReplace.Name = "BtnStartReplace";
            this.BtnStartReplace.Size = new System.Drawing.Size(75, 23);
            this.BtnStartReplace.TabIndex = 7;
            this.BtnStartReplace.Text = "开始替换";
            this.BtnStartReplace.UseVisualStyleBackColor = true;
            this.BtnStartReplace.Click += new System.EventHandler(this.BtnStartReplace_Click);
            // 
            // BtnQuickReplace
            // 
            this.BtnQuickReplace.Location = new System.Drawing.Point(100, 146);
            this.BtnQuickReplace.Name = "BtnQuickReplace";
            this.BtnQuickReplace.Size = new System.Drawing.Size(75, 23);
            this.BtnQuickReplace.TabIndex = 8;
            this.BtnQuickReplace.Text = "快速替换";
            this.BtnQuickReplace.UseVisualStyleBackColor = true;
            this.BtnQuickReplace.Click += new System.EventHandler(this.BtnQuickReplace_Click);
            // 
            // BtnModifyCoord
            // 
            this.BtnModifyCoord.Location = new System.Drawing.Point(197, 146);
            this.BtnModifyCoord.Name = "BtnModifyCoord";
            this.BtnModifyCoord.Size = new System.Drawing.Size(75, 23);
            this.BtnModifyCoord.TabIndex = 9;
            this.BtnModifyCoord.Text = "修改坐标值";
            this.BtnModifyCoord.UseVisualStyleBackColor = true;
            this.BtnModifyCoord.Click += new System.EventHandler(this.BtnModifyCoord_Click);
            // 
            // FrmMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(290, 190);
            this.Controls.Add(this.BtnModifyCoord);
            this.Controls.Add(this.BtnQuickReplace);
            this.Controls.Add(this.BtnStartReplace);
            this.Controls.Add(this.txtTargetStr);
            this.Controls.Add(this.txtOriginStr);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.BtnFolderDia);
            this.Controls.Add(this.txtFolderName);
            this.Controls.Add(this.label1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmMain";
            this.Text = "文件中查找替换字符";
            this.Load += new System.EventHandler(this.FrmMain_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox txtFolderName;
        private System.Windows.Forms.FolderBrowserDialog FolderDia;
        private System.Windows.Forms.Button BtnFolderDia;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.TextBox txtOriginStr;
        private System.Windows.Forms.TextBox txtTargetStr;
        private System.Windows.Forms.Button BtnStartReplace;
        private System.Windows.Forms.Button BtnQuickReplace;
        private System.Windows.Forms.Button BtnModifyCoord;
    }
}

⌨️ 快捷键说明

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