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

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

?? frmregex.designer.cs

?? 正則表達式工具,C#.NET開發.功能雖不強大.但能夠解決工作實際的應用.
?? CS
?? 第 1 頁 / 共 3 頁
字號:
?namespace RegexTest
{
    partial class frmRegex
    {
        /// <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.label1 = new System.Windows.Forms.Label();
            this.RegexTextBox = new System.Windows.Forms.TextBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.IgnorePatternWhiteSpaceChkBox = new System.Windows.Forms.CheckBox();
            this.SingeLineChkBox = new System.Windows.Forms.CheckBox();
            this.RightToLeftChkBox = new System.Windows.Forms.CheckBox();
            this.MultiLineChkBox = new System.Windows.Forms.CheckBox();
            this.IgnoreCaseChkBox = new System.Windows.Forms.CheckBox();
            this.ExplicitCaptureChkBox = new System.Windows.Forms.CheckBox();
            this.ECMAScriptChkBox = new System.Windows.Forms.CheckBox();
            this.OpenRegexButton = new System.Windows.Forms.Button();
            this.SaveRegexButton = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.InputTextBox = new System.Windows.Forms.TextBox();
            this.ReplacementTextBox = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.ResultsTextBox = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.TestRegexButton = new System.Windows.Forms.Button();
            this.ReplaceButton = new System.Windows.Forms.Button();
            this.SplitBoutton = new System.Windows.Forms.Button();
            this.MatchesButton = new System.Windows.Forms.Button();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.GroupsButton = new System.Windows.Forms.Button();
            this.FamiliarRegex = new System.Windows.Forms.LinkLabel();
            this.MenuRegex = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.整數ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.浮點數ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.電話號碼ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.郵政編碼ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.電子郵件地址ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.iPToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.中文字符ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.空白行ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.hTML標記ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.首尾空白字符ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.網址URLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.網絡帳號ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.國內電話號碼ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.騰訊QQ號ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.中國身份證號ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.groupBox1.SuspendLayout();
            this.MenuRegex.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(4, 7);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(71, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "正則表達式:";
            // 
            // RegexTextBox
            // 
            this.RegexTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.RegexTextBox.Location = new System.Drawing.Point(6, 23);
            this.RegexTextBox.Multiline = true;
            this.RegexTextBox.Name = "RegexTextBox";
            this.RegexTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.RegexTextBox.Size = new System.Drawing.Size(470, 47);
            this.RegexTextBox.TabIndex = 1;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.IgnorePatternWhiteSpaceChkBox);
            this.groupBox1.Controls.Add(this.SingeLineChkBox);
            this.groupBox1.Controls.Add(this.RightToLeftChkBox);
            this.groupBox1.Controls.Add(this.MultiLineChkBox);
            this.groupBox1.Controls.Add(this.IgnoreCaseChkBox);
            this.groupBox1.Controls.Add(this.ExplicitCaptureChkBox);
            this.groupBox1.Controls.Add(this.ECMAScriptChkBox);
            this.groupBox1.Location = new System.Drawing.Point(7, 76);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(335, 94);
            this.groupBox1.TabIndex = 2;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "正則表達式選項:";
            // 
            // IgnorePatternWhiteSpaceChkBox
            // 
            this.IgnorePatternWhiteSpaceChkBox.AutoSize = true;
            this.IgnorePatternWhiteSpaceChkBox.Location = new System.Drawing.Point(21, 69);
            this.IgnorePatternWhiteSpaceChkBox.Name = "IgnorePatternWhiteSpaceChkBox";
            this.IgnorePatternWhiteSpaceChkBox.Size = new System.Drawing.Size(156, 16);
            this.IgnorePatternWhiteSpaceChkBox.TabIndex = 6;
            this.IgnorePatternWhiteSpaceChkBox.Text = "刪除所有非轉義空白字符";
            this.IgnorePatternWhiteSpaceChkBox.UseVisualStyleBackColor = true;
            // 
            // SingeLineChkBox
            // 
            this.SingeLineChkBox.AutoSize = true;
            this.SingeLineChkBox.Location = new System.Drawing.Point(235, 47);
            this.SingeLineChkBox.Name = "SingeLineChkBox";
            this.SingeLineChkBox.Size = new System.Drawing.Size(72, 16);
            this.SingeLineChkBox.TabIndex = 5;
            this.SingeLineChkBox.Text = "單行文本";
            this.SingeLineChkBox.UseVisualStyleBackColor = true;
            // 
            // RightToLeftChkBox
            // 
            this.RightToLeftChkBox.AutoSize = true;
            this.RightToLeftChkBox.Location = new System.Drawing.Point(125, 46);
            this.RightToLeftChkBox.Name = "RightToLeftChkBox";
            this.RightToLeftChkBox.Size = new System.Drawing.Size(72, 16);
            this.RightToLeftChkBox.TabIndex = 4;
            this.RightToLeftChkBox.Text = "從右到左";
            this.RightToLeftChkBox.UseVisualStyleBackColor = true;
            // 
            // MultiLineChkBox
            // 
            this.MultiLineChkBox.AutoSize = true;
            this.MultiLineChkBox.Location = new System.Drawing.Point(21, 47);
            this.MultiLineChkBox.Name = "MultiLineChkBox";
            this.MultiLineChkBox.Size = new System.Drawing.Size(72, 16);
            this.MultiLineChkBox.TabIndex = 3;
            this.MultiLineChkBox.Text = "多行文本";
            this.MultiLineChkBox.UseVisualStyleBackColor = true;
            // 
            // IgnoreCaseChkBox
            // 
            this.IgnoreCaseChkBox.AutoSize = true;
            this.IgnoreCaseChkBox.Location = new System.Drawing.Point(235, 25);
            this.IgnoreCaseChkBox.Name = "IgnoreCaseChkBox";
            this.IgnoreCaseChkBox.Size = new System.Drawing.Size(84, 16);
            this.IgnoreCaseChkBox.TabIndex = 2;
            this.IgnoreCaseChkBox.Text = "忽略大小寫";
            this.IgnoreCaseChkBox.UseVisualStyleBackColor = true;
            // 
            // ExplicitCaptureChkBox
            // 
            this.ExplicitCaptureChkBox.AutoSize = true;
            this.ExplicitCaptureChkBox.Location = new System.Drawing.Point(125, 24);
            this.ExplicitCaptureChkBox.Name = "ExplicitCaptureChkBox";
            this.ExplicitCaptureChkBox.Size = new System.Drawing.Size(72, 16);
            this.ExplicitCaptureChkBox.TabIndex = 1;
            this.ExplicitCaptureChkBox.Text = "取消捕捉";
            this.ExplicitCaptureChkBox.UseVisualStyleBackColor = true;
            // 
            // ECMAScriptChkBox
            // 
            this.ECMAScriptChkBox.AutoSize = true;
            this.ECMAScriptChkBox.Location = new System.Drawing.Point(21, 25);
            this.ECMAScriptChkBox.Name = "ECMAScriptChkBox";
            this.ECMAScriptChkBox.Size = new System.Drawing.Size(72, 16);
            this.ECMAScriptChkBox.TabIndex = 0;
            this.ECMAScriptChkBox.Text = "ECMA規范";
            this.ECMAScriptChkBox.UseVisualStyleBackColor = true;
            // 
            // OpenRegexButton
            // 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美亚日韩国产aⅴ精品中极品| 久久精工是国产品牌吗| 精品理论电影在线| 日韩三级在线观看| 欧美一区二区在线播放| 欧洲色大大久久| 欧美日韩一级大片网址| 欧美三级乱人伦电影| 欧美日韩国产123区| 欧美日韩国产精品自在自线| 欧美日韩国产综合一区二区| 欧美日本国产一区| 精品乱人伦一区二区三区| 精品福利在线导航| 国产欧美视频一区二区| 国产精品美女一区二区| 亚洲精品国产无天堂网2021 | 678五月天丁香亚洲综合网| 欧美日韩一区高清| 欧美电视剧在线看免费| 国产日韩欧美一区二区三区乱码| 国产精品久久久久久久久久久免费看 | 成人v精品蜜桃久久一区| av一区二区三区四区| 在线观看一区不卡| 日韩视频一区二区| 中文字幕不卡在线观看| 又紧又大又爽精品一区二区| 日韩精品亚洲专区| 国产一区二区免费在线| 99久久99久久精品免费观看| 欧美亚洲综合在线| 精品999在线播放| 国产精品国产a| 视频一区二区三区中文字幕| 国产老妇另类xxxxx| 日本高清免费不卡视频| 日韩欧美亚洲国产另类| 亚洲色图色小说| 麻豆成人久久精品二区三区小说| 成人亚洲一区二区一| 欧美裸体一区二区三区| 日本一区二区电影| 日韩av电影免费观看高清完整版 | 91香蕉视频污在线| 日韩欧美一卡二卡| 亚洲天堂精品在线观看| 精品一区二区免费视频| 在线精品视频免费播放| 久久精品无码一区二区三区| 亚洲高清免费视频| 99视频在线精品| 久久伊99综合婷婷久久伊| 亚洲精品国产无天堂网2021 | 91精品国产一区二区三区蜜臀| 国产日韩欧美精品在线| 日韩中文字幕亚洲一区二区va在线| 风间由美一区二区av101| 日韩一区二区在线观看| 亚洲一区二区三区免费视频| 夫妻av一区二区| 欧美精品一区二区三区在线播放| 亚洲国产毛片aaaaa无费看| 成人h精品动漫一区二区三区| 精品奇米国产一区二区三区| 亚洲高清久久久| 在线观看免费视频综合| 亚洲日本免费电影| www.亚洲在线| 国产精品欧美一区喷水| 国产成人在线观看免费网站| 91麻豆精品国产自产在线观看一区 | 国产精品久久久久久亚洲毛片 | 欧美日韩情趣电影| 一级特黄大欧美久久久| 91免费视频观看| 亚洲日本一区二区三区| 色妹子一区二区| 一区二区在线电影| 色就色 综合激情| 亚洲综合免费观看高清完整版| 欧美成人a在线| 午夜精品福利视频网站| 欧美日韩成人综合在线一区二区| 亚洲福利视频三区| 欧美日韩成人综合天天影院 | 乱中年女人伦av一区二区| 欧美一个色资源| 激情欧美一区二区| 国产日韩综合av| 99re视频精品| 性欧美疯狂xxxxbbbb| 51午夜精品国产| 国产一区日韩二区欧美三区| 国产免费观看久久| 成人av免费在线观看| 亚洲精品视频在线观看网站| 欧美欧美欧美欧美| 六月丁香综合在线视频| 欧美激情在线一区二区三区| 99国产精品99久久久久久| 一区二区成人在线| 日韩手机在线导航| 国产成人鲁色资源国产91色综| 亚洲手机成人高清视频| 欧美日本不卡视频| 国产精品亚洲专一区二区三区| 中文字幕一区二区三区在线播放| 欧美性视频一区二区三区| 蜜桃视频第一区免费观看| 国产欧美日韩三级| 欧美日韩精品二区第二页| 精品亚洲免费视频| 一级中文字幕一区二区| 久久午夜色播影院免费高清| 一本色道a无线码一区v| 久久国产欧美日韩精品| 亚洲欧美一区二区不卡| 欧美成人激情免费网| 在线欧美小视频| 国产精品99精品久久免费| 亚洲午夜视频在线| 中文字幕+乱码+中文字幕一区| 欧美日韩黄色一区二区| 99久久婷婷国产综合精品 | 精品日本一线二线三线不卡| 97se亚洲国产综合在线| 国产美女av一区二区三区| 亚洲成人av中文| 国产精品久久久久久久久免费樱桃| 欧美一区中文字幕| 色天天综合久久久久综合片| 国产精品一区不卡| 麻豆成人免费电影| 午夜影视日本亚洲欧洲精品| 中文字幕在线不卡| 国产亚洲综合色| 精品日韩成人av| 91精品国产综合久久久久久漫画 | 日韩精品91亚洲二区在线观看| 国产精品久久久久久久午夜片| 欧美大片在线观看一区| 欧美日韩美少妇| 在线看国产一区二区| 91蝌蚪porny九色| 99在线精品视频| 国产成人综合视频| 国产精品亚洲一区二区三区在线 | 亚洲国产精品一区二区久久恐怖片| 国产日韩精品一区二区三区| 精品国产露脸精彩对白| 欧美一区二区三区在线视频| 欧美日韩国产在线播放网站| 色94色欧美sute亚洲线路一久| 99久久国产综合精品色伊| 成人免费毛片片v| jlzzjlzz国产精品久久| av在线一区二区三区| 成人99免费视频| 91在线视频官网| 一本色道久久综合亚洲aⅴ蜜桃 | 国产精品日韩成人| 国产区在线观看成人精品| 国产日韩欧美一区二区三区乱码| 国产亚洲欧美日韩俺去了| 久久久www成人免费毛片麻豆 | 成人综合婷婷国产精品久久| 国产成人高清视频| 成人美女视频在线观看| 91麻豆福利精品推荐| 欧美日韩高清在线播放| 日韩欧美国产电影| 国产日产欧产精品推荐色 | 亚洲v精品v日韩v欧美v专区| 日韩高清中文字幕一区| 久久国产麻豆精品| 国产成人午夜精品影院观看视频| 国产99久久久国产精品潘金网站| 菠萝蜜视频在线观看一区| 91国产免费观看| 日韩一区二区高清| 国产日韩欧美精品综合| 亚洲一区二区三区美女| 美女视频黄 久久| a级高清视频欧美日韩| 欧美挠脚心视频网站| 久久精品视频在线免费观看| 亚洲精选视频在线| 久久99久国产精品黄毛片色诱| 成人综合在线网站| 5月丁香婷婷综合| 国产精品人人做人人爽人人添| 亚洲国产婷婷综合在线精品| 精品午夜一区二区三区在线观看 | 亚洲777理论| 国产乱码一区二区三区| 日本黄色一区二区| 久久蜜臀中文字幕| 亚洲成人免费在线| av动漫一区二区|