📄 formregexvalidation.designer.cs
字号:
namespace RegexExample1
{
partial class FormRegexValidation
{
/// <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.label2 = new System.Windows.Forms.Label();
this.textBoxValidateString = new System.Windows.Forms.TextBox();
this.textBoxValidatedString = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.textBoxIsMatch = new System.Windows.Forms.TextBox();
this.buttonValidation = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 23);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 0;
this.label1.Text = "正则表达式";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 64);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 0;
this.label2.Text = "验证字符串";
//
// textBoxValidateString
//
this.textBoxValidateString.Location = new System.Drawing.Point(83, 20);
this.textBoxValidateString.Name = "textBoxValidateString";
this.textBoxValidateString.Size = new System.Drawing.Size(280, 21);
this.textBoxValidateString.TabIndex = 1;
this.textBoxValidateString.Enter += new System.EventHandler(this.textBoxValidateString_Enter);
//
// textBoxValidatedString
//
this.textBoxValidatedString.Location = new System.Drawing.Point(83, 61);
this.textBoxValidatedString.Name = "textBoxValidatedString";
this.textBoxValidatedString.Size = new System.Drawing.Size(280, 21);
this.textBoxValidatedString.TabIndex = 2;
this.textBoxValidatedString.Enter += new System.EventHandler(this.textBoxValidatedString_Enter);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 106);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 0;
this.label3.Text = "验证结果";
//
// textBoxIsMatch
//
this.textBoxIsMatch.Location = new System.Drawing.Point(83, 103);
this.textBoxIsMatch.Name = "textBoxIsMatch";
this.textBoxIsMatch.ReadOnly = true;
this.textBoxIsMatch.Size = new System.Drawing.Size(70, 21);
this.textBoxIsMatch.TabIndex = 2;
//
// buttonValidation
//
this.buttonValidation.Location = new System.Drawing.Point(288, 103);
this.buttonValidation.Name = "buttonValidation";
this.buttonValidation.Size = new System.Drawing.Size(75, 23);
this.buttonValidation.TabIndex = 3;
this.buttonValidation.Text = "开始验证";
this.buttonValidation.UseVisualStyleBackColor = true;
this.buttonValidation.Click += new System.EventHandler(this.buttonValidation_Click);
//
// FormRegexValidation
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(375, 145);
this.Controls.Add(this.buttonValidation);
this.Controls.Add(this.textBoxIsMatch);
this.Controls.Add(this.textBoxValidatedString);
this.Controls.Add(this.label3);
this.Controls.Add(this.textBoxValidateString);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "FormRegexValidation";
this.Text = "正则表达式验证";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBoxValidateString;
private System.Windows.Forms.TextBox textBoxValidatedString;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox textBoxIsMatch;
private System.Windows.Forms.Button buttonValidation;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -