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

📄 searcher.designer.cs

📁 改程序实现了记事本的一些基本操作
💻 CS
字号:
namespace jishiben
{
    partial class searcher
    {
        /// <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.label1 = new System.Windows.Forms.Label();
            this.tBnext = new System.Windows.Forms.TextBox();
            this.btn_searchnext = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.rBdown = new System.Windows.Forms.RadioButton();
            this.rBup = new System.Windows.Forms.RadioButton();
            this.btn_close = new System.Windows.Forms.Button();
            this.cBqufen = new System.Windows.Forms.CheckBox();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(12, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(68, 23);
            this.label1.TabIndex = 0;
            this.label1.Text = "查找内容:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // tBnext
            // 
            this.tBnext.Location = new System.Drawing.Point(75, 9);
            this.tBnext.Name = "tBnext";
            this.tBnext.Size = new System.Drawing.Size(151, 21);
            this.tBnext.TabIndex = 1;
            // 
            // btn_searchnext
            // 
            this.btn_searchnext.Location = new System.Drawing.Point(247, 9);
            this.btn_searchnext.Name = "btn_searchnext";
            this.btn_searchnext.Size = new System.Drawing.Size(75, 23);
            this.btn_searchnext.TabIndex = 2;
            this.btn_searchnext.Text = "查找下一个";
            this.btn_searchnext.UseVisualStyleBackColor = true;
            this.btn_searchnext.Click += new System.EventHandler(this.btn_searchnext_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.rBdown);
            this.groupBox1.Controls.Add(this.rBup);
            this.groupBox1.Location = new System.Drawing.Point(104, 36);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(122, 59);
            this.groupBox1.TabIndex = 4;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "方向";
            // 
            // rBdown
            // 
            this.rBdown.AutoSize = true;
            this.rBdown.Checked = true;
            this.rBdown.Location = new System.Drawing.Point(59, 30);
            this.rBdown.Name = "rBdown";
            this.rBdown.Size = new System.Drawing.Size(47, 16);
            this.rBdown.TabIndex = 1;
            this.rBdown.TabStop = true;
            this.rBdown.Text = "向下";
            this.rBdown.UseVisualStyleBackColor = true;
            // 
            // rBup
            // 
            this.rBup.AutoSize = true;
            this.rBup.Location = new System.Drawing.Point(6, 30);
            this.rBup.Name = "rBup";
            this.rBup.Size = new System.Drawing.Size(47, 16);
            this.rBup.TabIndex = 0;
            this.rBup.Text = "向上";
            this.rBup.UseVisualStyleBackColor = true;
            // 
            // btn_close
            // 
            this.btn_close.Location = new System.Drawing.Point(247, 49);
            this.btn_close.Name = "btn_close";
            this.btn_close.Size = new System.Drawing.Size(75, 23);
            this.btn_close.TabIndex = 5;
            this.btn_close.Text = "取消";
            this.btn_close.UseVisualStyleBackColor = true;
            this.btn_close.Click += new System.EventHandler(this.btn_close_Click);
            // 
            // cBqufen
            // 
            this.cBqufen.AutoSize = true;
            this.cBqufen.Location = new System.Drawing.Point(14, 67);
            this.cBqufen.Name = "cBqufen";
            this.cBqufen.Size = new System.Drawing.Size(84, 16);
            this.cBqufen.TabIndex = 6;
            this.cBqufen.Text = "区分大小写";
            this.cBqufen.UseVisualStyleBackColor = true;
            // 
            // searcher
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
            this.ClientSize = new System.Drawing.Size(334, 109);
            this.Controls.Add(this.cBqufen);
            this.Controls.Add(this.btn_close);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.btn_searchnext);
            this.Controls.Add(this.tBnext);
            this.Controls.Add(this.label1);
            this.HelpButton = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "searcher";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "查找";
            this.HelpButtonClicked += new System.ComponentModel.CancelEventHandler(this.searcher_HelpButtonClicked);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox tBnext;
        private System.Windows.Forms.Button btn_searchnext;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.RadioButton rBdown;
        private System.Windows.Forms.RadioButton rBup;
        private System.Windows.Forms.Button btn_close;
        private System.Windows.Forms.CheckBox cBqufen;
    }
}

⌨️ 快捷键说明

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