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

📄 searchandreplaceform.designer.cs

📁 在CSharpNotepad中可以创建和编辑简单文本文档
💻 CS
字号:
namespace CSharpNotepad
{
    partial class searchAndreplaceForm
    {
        /// <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(searchAndreplaceForm));
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPageSearch = new System.Windows.Forms.TabPage();
            this.cancelButton1 = new System.Windows.Forms.Button();
            this.searchButton1 = new System.Windows.Forms.Button();
            this.checkBoxMatch1 = new System.Windows.Forms.CheckBox();
            this.checkBoxCaps1 = new System.Windows.Forms.CheckBox();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.tabPageReplace = new System.Windows.Forms.TabPage();
            this.replaceButton = new System.Windows.Forms.Button();
            this.textBox3 = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.cancelButton2 = new System.Windows.Forms.Button();
            this.searchButton2 = new System.Windows.Forms.Button();
            this.checkBoxMatch2 = new System.Windows.Forms.CheckBox();
            this.checkBoxCaps2 = new System.Windows.Forms.CheckBox();
            this.textBox2 = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.tabControl1.SuspendLayout();
            this.tabPageSearch.SuspendLayout();
            this.tabPageReplace.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPageSearch);
            this.tabControl1.Controls.Add(this.tabPageReplace);
            this.tabControl1.Location = new System.Drawing.Point(6, 6);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(486, 156);
            this.tabControl1.TabIndex = 0;
            this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
            // 
            // tabPageSearch
            // 
            this.tabPageSearch.Controls.Add(this.cancelButton1);
            this.tabPageSearch.Controls.Add(this.searchButton1);
            this.tabPageSearch.Controls.Add(this.checkBoxMatch1);
            this.tabPageSearch.Controls.Add(this.checkBoxCaps1);
            this.tabPageSearch.Controls.Add(this.textBox1);
            this.tabPageSearch.Controls.Add(this.label1);
            this.tabPageSearch.Location = new System.Drawing.Point(4, 21);
            this.tabPageSearch.Name = "tabPageSearch";
            this.tabPageSearch.Size = new System.Drawing.Size(478, 131);
            this.tabPageSearch.TabIndex = 0;
            this.tabPageSearch.Text = "查找";
            this.tabPageSearch.UseVisualStyleBackColor = true;
            // 
            // cancelButton1
            // 
            this.cancelButton1.Location = new System.Drawing.Point(364, 43);
            this.cancelButton1.Name = "cancelButton1";
            this.cancelButton1.Size = new System.Drawing.Size(106, 23);
            this.cancelButton1.TabIndex = 2;
            this.cancelButton1.Text = "取消";
            this.cancelButton1.UseVisualStyleBackColor = true;
            this.cancelButton1.Click += new System.EventHandler(this.cancelButton1_Click);
            // 
            // searchButton1
            // 
            this.searchButton1.Location = new System.Drawing.Point(363, 13);
            this.searchButton1.Name = "searchButton1";
            this.searchButton1.Size = new System.Drawing.Size(107, 23);
            this.searchButton1.TabIndex = 1;
            this.searchButton1.Text = "查找下一处(&F)";
            this.searchButton1.UseVisualStyleBackColor = true;
            this.searchButton1.Click += new System.EventHandler(this.searchButton1_Click);
            // 
            // checkBoxMatch1
            // 
            this.checkBoxMatch1.AutoSize = true;
            this.checkBoxMatch1.Location = new System.Drawing.Point(22, 101);
            this.checkBoxMatch1.Name = "checkBoxMatch1";
            this.checkBoxMatch1.Size = new System.Drawing.Size(90, 16);
            this.checkBoxMatch1.TabIndex = 4;
            this.checkBoxMatch1.Text = "全字匹配(&Y)";
            this.checkBoxMatch1.UseVisualStyleBackColor = true;
            // 
            // checkBoxCaps1
            // 
            this.checkBoxCaps1.AutoSize = true;
            this.checkBoxCaps1.Location = new System.Drawing.Point(22, 79);
            this.checkBoxCaps1.Name = "checkBoxCaps1";
            this.checkBoxCaps1.Size = new System.Drawing.Size(102, 16);
            this.checkBoxCaps1.TabIndex = 3;
            this.checkBoxCaps1.Text = "区分大小写(&H)";
            this.checkBoxCaps1.UseVisualStyleBackColor = true;
            // 
            // textBox1
            // 
            this.textBox1.Location = new System.Drawing.Point(95, 14);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(259, 21);
            this.textBox1.TabIndex = 0;
            this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 18);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(77, 12);
            this.label1.TabIndex = 15;
            this.label1.Text = "查找内容(&N):";
            // 
            // tabPageReplace
            // 
            this.tabPageReplace.Controls.Add(this.replaceButton);
            this.tabPageReplace.Controls.Add(this.textBox3);
            this.tabPageReplace.Controls.Add(this.label3);
            this.tabPageReplace.Controls.Add(this.cancelButton2);
            this.tabPageReplace.Controls.Add(this.searchButton2);
            this.tabPageReplace.Controls.Add(this.checkBoxMatch2);
            this.tabPageReplace.Controls.Add(this.checkBoxCaps2);
            this.tabPageReplace.Controls.Add(this.textBox2);
            this.tabPageReplace.Controls.Add(this.label2);
            this.tabPageReplace.Location = new System.Drawing.Point(4, 21);
            this.tabPageReplace.Name = "tabPageReplace";
            this.tabPageReplace.Size = new System.Drawing.Size(478, 131);
            this.tabPageReplace.TabIndex = 0;
            this.tabPageReplace.Text = "替换";
            this.tabPageReplace.UseVisualStyleBackColor = true;
            // 
            // replaceButton
            // 
            this.replaceButton.Location = new System.Drawing.Point(364, 43);
            this.replaceButton.Name = "replaceButton";
            this.replaceButton.Size = new System.Drawing.Size(106, 23);
            this.replaceButton.TabIndex = 9;
            this.replaceButton.Text = "替换(&R)";
            this.replaceButton.UseVisualStyleBackColor = true;
            this.replaceButton.Click += new System.EventHandler(this.replaceButton_Click);
            // 
            // textBox3
            // 
            this.textBox3.Location = new System.Drawing.Point(95, 44);
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new System.Drawing.Size(259, 21);
            this.textBox3.TabIndex = 7;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(24, 48);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(65, 12);
            this.label3.TabIndex = 12;
            this.label3.Text = "替换为(&I):";
            // 
            // cancelButton2
            // 
            this.cancelButton2.Location = new System.Drawing.Point(363, 75);
            this.cancelButton2.Name = "cancelButton2";
            this.cancelButton2.Size = new System.Drawing.Size(107, 23);
            this.cancelButton2.TabIndex = 10;
            this.cancelButton2.Text = "取消";
            this.cancelButton2.UseVisualStyleBackColor = true;
            this.cancelButton2.Click += new System.EventHandler(this.cancelButton2_Click);
            // 
            // searchButton2
            // 
            this.searchButton2.Location = new System.Drawing.Point(363, 13);
            this.searchButton2.Name = "searchButton2";
            this.searchButton2.Size = new System.Drawing.Size(107, 23);
            this.searchButton2.TabIndex = 8;
            this.searchButton2.Text = "查找下一处(&F)";
            this.searchButton2.UseVisualStyleBackColor = true;
            this.searchButton2.Click += new System.EventHandler(this.searchButton2_Click);
            // 
            // checkBoxMatch2
            // 
            this.checkBoxMatch2.AutoSize = true;
            this.checkBoxMatch2.Location = new System.Drawing.Point(22, 101);
            this.checkBoxMatch2.Name = "checkBoxMatch2";
            this.checkBoxMatch2.Size = new System.Drawing.Size(90, 16);
            this.checkBoxMatch2.TabIndex = 12;
            this.checkBoxMatch2.Text = "全字匹配(&Y)";
            this.checkBoxMatch2.UseVisualStyleBackColor = true;
            // 
            // checkBoxCaps2
            // 
            this.checkBoxCaps2.AutoSize = true;
            this.checkBoxCaps2.Location = new System.Drawing.Point(22, 79);
            this.checkBoxCaps2.Name = "checkBoxCaps2";
            this.checkBoxCaps2.Size = new System.Drawing.Size(102, 16);
            this.checkBoxCaps2.TabIndex = 11;
            this.checkBoxCaps2.Text = "区分大小写(&H)";
            this.checkBoxCaps2.UseVisualStyleBackColor = true;
            // 
            // textBox2
            // 
            this.textBox2.Location = new System.Drawing.Point(95, 14);
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new System.Drawing.Size(259, 21);
            this.textBox2.TabIndex = 6;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(12, 18);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(77, 12);
            this.label2.TabIndex = 6;
            this.label2.Text = "查找内容(&N):";
            // 
            // searchAndreplaceForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(497, 167);
            this.Controls.Add(this.tabControl1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "searchAndreplaceForm";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "查找和替换";
            this.tabControl1.ResumeLayout(false);
            this.tabPageSearch.ResumeLayout(false);
            this.tabPageSearch.PerformLayout();
            this.tabPageReplace.ResumeLayout(false);
            this.tabPageReplace.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPageSearch;
        private System.Windows.Forms.TabPage tabPageReplace;
        private System.Windows.Forms.TextBox textBox3;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Button cancelButton2;
        private System.Windows.Forms.Button searchButton2;
        private System.Windows.Forms.CheckBox checkBoxMatch2;
        private System.Windows.Forms.CheckBox checkBoxCaps2;
        private System.Windows.Forms.TextBox textBox2;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Button cancelButton1;
        private System.Windows.Forms.Button searchButton1;
        private System.Windows.Forms.CheckBox checkBoxMatch1;
        private System.Windows.Forms.CheckBox checkBoxCaps1;
        private System.Windows.Forms.TextBox textBox1;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button replaceButton;

    }
}

⌨️ 快捷键说明

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