namespace SuperDesign.Controls.Highlight.FindReplace
{
partial class FindConfig
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
///
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.rdoFileStandardR = new System.Windows.Forms.RadioButton();
this.rdoFileExtendedR = new System.Windows.Forms.RadioButton();
this.rdoFileRegexR = new System.Windows.Forms.RadioButton();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.pnlStandardOptions = new System.Windows.Forms.Panel();
this.chkFileWordStartR = new System.Windows.Forms.CheckBox();
this.chkFileWholeWordR = new System.Windows.Forms.CheckBox();
this.chkFileMatchCaseR = new System.Windows.Forms.CheckBox();
this.pnlRegexpOptions = new System.Windows.Forms.Panel();
this.chkFileSinglelineR = new System.Windows.Forms.CheckBox();
this.chkFileRightToLeftR = new System.Windows.Forms.CheckBox();
this.chkFileMultilineR = new System.Windows.Forms.CheckBox();
this.chkFileIgnorePatternWhitespaceR = new System.Windows.Forms.CheckBox();
this.chkFileIgnoreCaseR = new System.Windows.Forms.CheckBox();
this.chkFileExplicitCaptureR = new System.Windows.Forms.CheckBox();
this.chkFileEcmaScriptR = new System.Windows.Forms.CheckBox();
this.chkFileCultureInvariantR = new System.Windows.Forms.CheckBox();
this.chkFileCompiledR = new System.Windows.Forms.CheckBox();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.pnlStandardOptions.SuspendLayout();
this.pnlRegexpOptions.SuspendLayout();
this.SuspendLayout();
//
// groupBox2
//
this.groupBox2.Controls.Add(this.rdoFileStandardR);
this.groupBox2.Controls.Add(this.rdoFileExtendedR);
this.groupBox2.Controls.Add(this.rdoFileRegexR);
this.groupBox2.Location = new System.Drawing.Point(3, 3);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(158, 82);
this.groupBox2.TabIndex = 38;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "搜索模式";
//
// rdoFileStandardR
//
this.rdoFileStandardR.AutoSize = true;
this.rdoFileStandardR.Checked = true;
this.rdoFileStandardR.Location = new System.Drawing.Point(6, 20);
this.rdoFileStandardR.Name = "rdoFileStandardR";
this.rdoFileStandardR.Size = new System.Drawing.Size(47, 16);
this.rdoFileStandardR.TabIndex = 5;
this.rdoFileStandardR.TabStop = true;
this.rdoFileStandardR.Text = "标准";
this.rdoFileStandardR.UseVisualStyleBackColor = true;
this.rdoFileStandardR.CheckedChanged += new System.EventHandler(this.RdoFileStandardR_CheckedChanged);
//
// rdoFileExtendedR
//
this.rdoFileExtendedR.AutoSize = true;
this.rdoFileExtendedR.Location = new System.Drawing.Point(6, 41);
this.rdoFileExtendedR.Name = "rdoFileExtendedR";
this.rdoFileExtendedR.Size = new System.Drawing.Size(149, 16);
this.rdoFileExtendedR.TabIndex = 6;
this.rdoFileExtendedR.Text = "扩展 (\\n, \\r, \\t, \\0)";
this.rdoFileExtendedR.UseVisualStyleBackColor = true;
this.rdoFileExtendedR.CheckedChanged += new System.EventHandler(this.RdoFileExtendedR_CheckedChanged);
//
// rdoFileRegexR
//
this.rdoFileRegexR.AutoSize = true;
this.rdoFileRegexR.Location = new System.Drawing.Point(6, 62);
this.rdoFileRegexR.Name = "rdoFileRegexR";
this.rdoFileRegexR.Size = new System.Drawing.Size(83, 16);
this.rdoFileRegexR.TabIndex = 7;
this.rdoFileRegexR.Text = "正则表达式";
this.rdoFileRegexR.UseVisualStyleBackColor = true;
this.rdoFileRegexR.CheckedChanged += new System.EventHandler(this.RdoFileRegexR_CheckedChanged);
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.pnlRegexpOptions);
this.groupBox1.Controls.Add(this.pnlStandardOptions);
this.groupBox1.Location = new System.Drawing.Point(164, 3);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(371, 82);
this.groupBox1.TabIndex = 39;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "选项";
//
// pnlStandardOptions
//
this.pnlStandardOptions.Controls.Add(this.chkFileWordStartR);
this.pnlStandardOptions.Controls.Add(this.chkFileWholeWordR);
this.pnlStandardOptions.Controls.Add(this.chkFileMatchCaseR);
this.pnlStandardOptions.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlStandardOptions.Location = new System.Drawing.Point(3, 17);
this.pnlStandardOptions.Name = "pnlStandardOptions";
this.pnlStandardOptions.Size = new System.Drawing.Size(365, 62);
this.pnlStandardOptions.TabIndex = 0;
//
// chkFileWordStartR
//
this.chkFileWordStartR.AutoSize = true;
this.chkFileWordStartR.Location = new System.Drawing.Point(10, 37);
this.chkFileWordStartR.Name = "chkFileWordStartR";
this.chkFileWordStartR.Size = new System.Drawing.Size(96, 16);
this.chkFileWordStartR.TabIndex = 2;
this.chkFileWordStartR.Text = "单词开头匹配";
this.chkFileWordStartR.UseVisualStyleBackColor = true;
//
// chkFileWholeWordR
//
this.chkFileWholeWordR.AutoSize = true;
this.chkFileWholeWordR.Location = new System.Drawing.Point(10, 20);
this.chkFileWholeWordR.Name = "chkFileWholeWordR";
this.chkFileWholeWordR.Size = new System.Drawing.Size(72, 16);
this.chkFileWholeWordR.TabIndex = 1;
this.chkFileWholeWordR.Text = "全词匹配";
this.chkFileWholeWordR.UseVisualStyleBackColor = true;
//
// chkFileMatchCaseR
//
this.chkFileMatchCaseR.AutoSize = true;
this.chkFileMatchCaseR.Location = new System.Drawing.Point(10, 3);
this.chkFileMatchCaseR.Name = "chkFileMatchCaseR";
this.chkFileMatchCaseR.Size = new System.Drawing.Size(84, 16);
this.chkFileMatchCaseR.TabIndex = 0;
this.chkFileMatchCaseR.Text = "匹配大小写";
this.chkFileMatchCaseR.UseVisualStyleBackColor = true;
//
// pnlRegexpOptions
//
this.pnlRegexpOptions.Controls.Add(this.chkFileSinglelineR);
this.pnlRegexpOptions.Controls.Add(this.chkFileRightToLeftR);
this.pnlRegexpOptions.Controls.Add(this.chkFileMultilineR);
this.pnlRegexpOptions.Controls.Add(this.chkFileIgnorePatternWhitespaceR);
this.pnlRegexpOptions.Controls.Add(this.chkFileIgnoreCaseR);
this.pnlRegexpOptions.Controls.Add(this.chkFileExplicitCaptureR);
this.pnlRegexpOptions.Controls.Add(this.chkFileEcmaScriptR);
this.pnlRegexpOptions.Controls.Add(this.chkFileCultureInvariantR);
this.pnlRegexpOptions.Controls.Add(this.chkFileCompiledR);
this.pnlRegexpOptions.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlRegexpOptions.Location = new System.Drawing.Point(3, 17);
this.pnlRegexpOptions.Name = "pnlRegexpOptions";
this.pnlRegexpOptions.Size = new System.Drawing.Size(365, 62);
this.pnlRegexpOptions.TabIndex = 1;
//
// chkFileSinglelineR
//
this.chkFileSinglelineR.AutoSize = true;
this.chkFileSinglelineR.Location = new System.Drawing.Point(251, 37);
this.chkFileSinglelineR.Name = "chkFileSinglelineR";
this.chkFileSinglelineR.Size = new System.Drawing.Size(72, 16);
this.chkFileSinglelineR.TabIndex = 8;
this.chkFileSinglelineR.Text = "单行模式";
this.toolTip1.SetToolTip(this.chkFileSinglelineR, "指定单行模式。 更改点 (.) 的含义,以使它与每个字符(而不是除 \\n 之外的所有字符)匹配。");
this.chkFileSinglelineR.UseVisualStyleBackColor = true;
//
// chkFileRightToLeftR
//
this.chkFileRightToLeftR.AutoSize = true;
this.chkFileRightToLeftR.Location = new System.Drawing.Point(251, 20);
this.chkFileRightToLeftR.Name = "chkFileRightToLeftR";
this.chkFileRightToLeftR.Size = new System.Drawing.Size(72, 16);
this.chkFileRightToLeftR.TabIndex = 7;
this.chkFileRightToLeftR.Text = "从右到左";
this.toolTip1.SetToolTip(this.chkFileRightToLeftR, "指定搜索从右向左而不是从左向右进行。");
this.chkFileRightToLeftR.UseVisualStyleBackColor = true;
//
// chkFileMultilineR
//
this.chkFileMultilineR.AutoSize = true;
this.chkFileMultilineR.Location = new System.Drawing.Point(251, 3);
this.chkFileMultilineR.Name = "chkFileMultilineR";
this.chkFileMultilineR.Size = new System.Drawing.Size(72, 16);
this.chkFileMultilineR.TabIndex = 6;
this.chkFileMultilineR.Text = "多行模式";
this.toolTip1.SetToolTip(this.chkFileMultilineR, "多行模式。 更改 ^ 和 $ 的含义,使它们分别在任意一行的行首和行尾匹配,而不仅仅在整个字符串的开头和结尾匹配。 ");
this.chkFileMultilineR.UseVisualStyleBackColor = true;
//
// chkFileIgnorePatternWhitespaceR
//
this.chkFileIgnorePatternWhitespaceR.AutoSize = true;
this.chkFileIgnorePatternWhitespaceR.Location = new System.Drawing.Point(130, 37);
this.chkFileIgnorePatternWhitespaceR.Name = "chkFileIgnorePatternWhitespaceR";
this.chkFileIgnorePatternWhitespaceR.Size = new System.Drawing.Size(84, 16);
this.chkFileIgnorePatternWhitespaceR.TabIndex = 5;
this.chkFileIgnorePatternWhitespaceR.Text = "忽略空白符";
this.toolTip1.SetToolTip(this.chkFileIgnorePatternWhitespaceR, "消除模式中的非转义空白并启用由 # 标记的注释。 \r\n但是,此值不影响或消除标记单独的正则表达式语言元素的开头的字符类、数值量词或标记的空格。 ");
this.chkFileIgnorePatternWhitespaceR.UseVisualStyleBackColor = true;
//
// chkFileIgnoreCaseR
//
this.chkFileIgnoreCaseR.AutoSize = true;
this.chkFileIgnoreCaseR.Location = new System.Drawing.Point(130, 20);
this.chkFileIgnoreCaseR.Name = "chkFileIgnoreCaseR";
this.chkFileIgnoreCaseR.Size = new System.Drawing.Size(84, 16);
this.chkFileIgnoreCaseR.TabIndex = 4;
this.chkFileIgnoreCaseR.Text = "忽略大小写";
this.toolTip1.SetToolTip(this.chkFileIgnoreCaseR, "指定不区分大小写的匹配。 ");
this.chkFileIgnoreCaseR.UseVisualStyleBackColor = true;
//
// chkFileExplicitCaptureR
//
this.chkFileExplicitCaptureR.AutoSize = true;
this.chkFileExplicitCaptureR.Location = new System.Drawing.Point(130, 3);
this.chkFileExplicitCaptureR.Name = "chkFileExplicitCaptureR";
this.chkFileExplicitCaptureR.Size = new System.Drawing.Size(72, 16);
this.chkFileExplicitCaptureR.TabIndex = 3;
this.chkFileExplicitCaptureR.Text = "显式捕获";
this.toolTip1.SetToolTip(this.chkFileExplicitCaptureR, "指定唯一有效的捕获是显式命名或编号的 (?...) 形式的组。\r\n这使未命名的圆括号可以充当非捕获组,并且不会使表达式的语法 (?:...) 显得笨拙" +
"。");
this.chkFileExplicitCaptureR.UseVisualStyleBackColor = true;
//
// chkFileEcmaScriptR
//
this.chkFileEcmaScriptR.AutoSize = true;
this.chkFileEcmaScriptR.Location = new System.Drawing.Point(3, 37);
this.chkFileEcmaScriptR.Name = "chkFileEcmaScriptR";
this.chkFileEcmaScriptR.Size = new System.Drawing.Size(72, 16);
this.chkFileEcmaScriptR.TabIndex = 2;
this.chkFileEcmaScriptR.Text = "ECMA脚本";
this.toolTip1.SetToolTip(this.chkFileEcmaScriptR, "指定搜索从右向左而不是从左向右进行。");
this.chkFileEcmaScriptR.UseVisualStyleBackColor = true;
this.chkFileEcmaScriptR.CheckedChanged += new System.EventHandler(this.chkFileEcmaScriptR_CheckedChanged);
//
// chkFileCultureInvariantR
//
this.chkFileCultureInvariantR.AutoSize = true;
this.chkFileCultureInvariantR.Location = new System.Drawing.Point(3, 20);
this.chkFileCultureInvariantR.Name = "chkFileCultureInvariantR";
this.chkFileCultureInvariantR.Size = new System.Drawing.Size(120, 16);
this.chkFileCultureInvariantR.TabIndex = 1;
this.chkFileCultureInvariantR.Text = "忽略语言区域差异";
this.toolTip1.SetToolTip(this.chkFileCultureInvariantR, "指定忽略语言中的区域性差异。");
this.chkFileCultureInvariantR.UseVisualStyleBackColor = true;
//
// chkFileCompiledR
//
this.chkFileCompiledR.AutoSize = true;
this.chkFileCompiledR.Location = new System.Drawing.Point(3, 3);
this.chkFileCompiledR.Name = "chkFileCompiledR";
this.chkFileCompiledR.Size = new System.Drawing.Size(60, 16);
this.chkFileCompiledR.TabIndex = 0;
this.chkFileCompiledR.Text = "已编译";
this.toolTip1.SetToolTip(this.chkFileCompiledR, "指定正则表达式编译为 MSIL 代码,而不是解释。 \r\n已编译的正则表达式最大限度地提高运行时性能,代价是会影响初始化时间。");
this.chkFileCompiledR.UseVisualStyleBackColor = true;
//
// FindConfig
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "FindConfig";
this.Size = new System.Drawing.Size(538, 90);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.pnlStandardOptions.ResumeLayout(false);
this.pnlStandardOptions.PerformLayout();
this.pnlRegexpOptions.ResumeLayout(false);
this.pnlRegexpOptions.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.RadioButton rdoFileStandardR;
private System.Windows.Forms.RadioButton rdoFileExtendedR;
private System.Windows.Forms.RadioButton rdoFileRegexR;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Panel pnlRegexpOptions;
private System.Windows.Forms.CheckBox chkFileSinglelineR;
private System.Windows.Forms.CheckBox chkFileRightToLeftR;
private System.Windows.Forms.CheckBox chkFileMultilineR;
private System.Windows.Forms.CheckBox chkFileIgnorePatternWhitespaceR;
private System.Windows.Forms.CheckBox chkFileIgnoreCaseR;
private System.Windows.Forms.CheckBox chkFileExplicitCaptureR;
private System.Windows.Forms.CheckBox chkFileEcmaScriptR;
private System.Windows.Forms.CheckBox chkFileCultureInvariantR;
private System.Windows.Forms.CheckBox chkFileCompiledR;
private System.Windows.Forms.Panel pnlStandardOptions;
private System.Windows.Forms.CheckBox chkFileWordStartR;
private System.Windows.Forms.CheckBox chkFileWholeWordR;
private System.Windows.Forms.CheckBox chkFileMatchCaseR;
}
}