亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 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 + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久色在线观看| 欧美一区二区在线观看| 国产麻豆成人传媒免费观看| 日韩精品亚洲专区| 亚洲成人精品一区| 日日摸夜夜添夜夜添亚洲女人| 日韩精品一级中文字幕精品视频免费观看| 亚洲精品网站在线观看| 亚洲一区二区在线观看视频| 午夜精品久久久久久久99水蜜桃| 亚洲成人午夜影院| 男男成人高潮片免费网站| 国内成人免费视频| 不卡一区二区中文字幕| 色悠悠久久综合| 欧美日韩激情一区二区三区| 午夜精品福利一区二区三区蜜桃| 亚洲va在线va天堂| 久久黄色级2电影| 丁香激情综合五月| 欧美视频在线一区| 精品三级在线看| 中文字幕欧美一| 天天综合色天天综合| 国产一区在线观看麻豆| 色欧美片视频在线观看在线视频| 欧美日韩国产另类不卡| 国产亚洲成aⅴ人片在线观看| 亚洲美女视频在线观看| 美腿丝袜在线亚洲一区| 99re8在线精品视频免费播放| 欧美日韩亚洲高清一区二区| 久久尤物电影视频在线观看| 亚洲欧美日韩一区二区| 黄色成人免费在线| 欧美三级三级三级| 中文字幕精品一区二区精品绿巨人| 亚洲一线二线三线久久久| 国产一区在线观看视频| 欧美福利视频导航| 中文字幕一区二区5566日韩| 另类欧美日韩国产在线| 91黄色免费观看| 国产日韩欧美综合一区| 狂野欧美性猛交blacked| 在线观看国产日韩| 国产精品天天摸av网| 日本v片在线高清不卡在线观看| av资源网一区| 久久久精品黄色| 老司机午夜精品99久久| 欧美区在线观看| 一区二区三区精密机械公司| 国产高清一区日本| 欧美精品一区在线观看| 日韩av电影天堂| 欧美日韩1区2区| 一区二区三区四区五区视频在线观看| 国产成人超碰人人澡人人澡| 精品少妇一区二区| 蜜臀av亚洲一区中文字幕| 欧美日韩国产经典色站一区二区三区| 日韩一区日韩二区| jlzzjlzz欧美大全| 国产精品护士白丝一区av| 国产综合久久久久久鬼色| 91精品国产欧美一区二区成人| 亚洲观看高清完整版在线观看 | 欧美一区二区三区在线观看视频| 成人欧美一区二区三区黑人麻豆| 国产99久久久久| 国产日产欧美一区| 成人免费毛片嘿嘿连载视频| 日本一区二区视频在线| 懂色av一区二区三区蜜臀| 亚洲国产精品v| 91视频国产观看| 亚洲免费看黄网站| 天堂久久一区二区三区| 在线综合亚洲欧美在线视频| 天天射综合影视| 日韩欧美精品三级| 国产成a人亚洲| 亚洲欧美在线aaa| 欧美日韩激情一区二区| 美日韩黄色大片| 久久久久久久久久电影| 不卡一区中文字幕| 亚洲国产精品一区二区久久恐怖片 | 亚洲成年人网站在线观看| 51午夜精品国产| 韩国理伦片一区二区三区在线播放| 久久在线观看免费| 99精品视频免费在线观看| 亚洲一区二区欧美日韩 | 开心九九激情九九欧美日韩精美视频电影 | 欧美一级生活片| 国产激情偷乱视频一区二区三区 | 精品视频一区 二区 三区| 免费精品99久久国产综合精品| 欧美不卡视频一区| 99精品欧美一区| 免费成人av在线播放| 国产精品素人视频| 欧美性猛交xxxx黑人交| 国产老女人精品毛片久久| 亚洲美女淫视频| 日韩精品一区二| 91免费视频大全| 精品一区二区在线视频| 亚洲美女视频一区| 久久在线观看免费| 欧美三级欧美一级| av午夜精品一区二区三区| 日韩经典一区二区| 亚洲欧洲综合另类| 国产午夜精品理论片a级大结局| 欧美中文字幕一二三区视频| 国产剧情一区在线| 亚洲国产精品麻豆| 专区另类欧美日韩| 久久久欧美精品sm网站| 欧美日韩电影一区| 99久久久精品免费观看国产蜜| 毛片一区二区三区| 亚洲va欧美va天堂v国产综合| 国产精品天干天干在观线| 欧美大尺度电影在线| 欧美伊人久久久久久久久影院| 国产成人在线观看免费网站| 免费一区二区视频| 亚洲一区二区精品视频| 最近日韩中文字幕| 国产精品天美传媒| 国产欧美一区二区精品性| 日韩欧美在线1卡| 91麻豆精品国产91久久久更新时间 | 亚洲精品老司机| 欧美国产日产图区| 久久久精品日韩欧美| 欧美tickling网站挠脚心| 555www色欧美视频| 91精品中文字幕一区二区三区| 欧美在线观看一区二区| 色噜噜狠狠一区二区三区果冻| 不卡的av中国片| 成人黄色国产精品网站大全在线免费观看 | 26uuu国产在线精品一区二区| 91精品国产综合久久福利| 欧美日韩成人高清| 制服.丝袜.亚洲.另类.中文| 欧美亚洲禁片免费| 欧美三级视频在线| 欧美高清性hdvideosex| 欧美精品免费视频| 欧美一级高清大全免费观看| 日韩欧美成人激情| 国产亚洲午夜高清国产拍精品| 久久精品一区四区| 国产精品久久久久影视| 亚洲人妖av一区二区| 一区二区成人在线| 天堂va蜜桃一区二区三区 | 国产亚洲自拍一区| 国产精品美女www爽爽爽| 亚洲丝袜制服诱惑| 亚洲一区二区三区爽爽爽爽爽| 午夜精品一区二区三区电影天堂 | 国产视频一区不卡| 最新日韩在线视频| 亚洲观看高清完整版在线观看| 日本在线播放一区二区三区| 紧缚捆绑精品一区二区| 成人av电影在线| 欧美日韩精品一区二区三区蜜桃| 日韩午夜在线观看| 日本一区二区动态图| 亚洲精品免费在线| 久久爱www久久做| 91丨九色丨蝌蚪丨老版| 欧美久久久久免费| 亚洲国产精品黑人久久久| 亚洲午夜羞羞片| 韩国精品主播一区二区在线观看 | 亚洲精品国产高清久久伦理二区| 午夜精品一区二区三区免费视频 | 久久综合五月天婷婷伊人| 国产精品亲子伦对白| 一区二区三区小说| 国内精品在线播放| 在线观看亚洲a| 中文字幕不卡三区| 男人的天堂久久精品| 一本一本久久a久久精品综合麻豆| 7777精品伊人久久久大香线蕉最新版 | 国产不卡在线视频| 91精品久久久久久蜜臀| 亚洲欧洲美洲综合色网| 精品在线一区二区| 欧美日韩成人综合在线一区二区|