📄 form1.designer.cs
字号:
namespace ChineseWordUnit
{
partial class Form1
{
/// <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.rtxOld = new System.Windows.Forms.RichTextBox();
this.rtxNew = new System.Windows.Forms.RichTextBox();
this.btnFileOpen = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btnFilter = new System.Windows.Forms.Button();
this.opdFile = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// rtxOld
//
this.rtxOld.Location = new System.Drawing.Point(27, 46);
this.rtxOld.Name = "rtxOld";
this.rtxOld.Size = new System.Drawing.Size(366, 197);
this.rtxOld.TabIndex = 0;
this.rtxOld.Text = "";
//
// rtxNew
//
this.rtxNew.Location = new System.Drawing.Point(27, 284);
this.rtxNew.Name = "rtxNew";
this.rtxNew.Size = new System.Drawing.Size(366, 197);
this.rtxNew.TabIndex = 0;
this.rtxNew.Text = "";
//
// btnFileOpen
//
this.btnFileOpen.Location = new System.Drawing.Point(421, 427);
this.btnFileOpen.Name = "btnFileOpen";
this.btnFileOpen.Size = new System.Drawing.Size(75, 23);
this.btnFileOpen.TabIndex = 1;
this.btnFileOpen.Text = "打开文件";
this.btnFileOpen.UseVisualStyleBackColor = true;
this.btnFileOpen.Click += new System.EventHandler(this.btnFileOpen_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(25, 31);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(89, 12);
this.label1.TabIndex = 2;
this.label1.Text = "过滤前的文字:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(25, 269);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 12);
this.label2.TabIndex = 2;
this.label2.Text = "过滤后的文字:";
//
// btnFilter
//
this.btnFilter.Location = new System.Drawing.Point(421, 456);
this.btnFilter.Name = "btnFilter";
this.btnFilter.Size = new System.Drawing.Size(75, 23);
this.btnFilter.TabIndex = 1;
this.btnFilter.Text = "过滤";
this.btnFilter.UseVisualStyleBackColor = true;
this.btnFilter.Click += new System.EventHandler(this.btnFilter_Click);
//
// opdFile
//
this.opdFile.FileName = "openFileDialog1";
this.opdFile.Filter = "txt|*.txt";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(499, 502);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnFilter);
this.Controls.Add(this.btnFileOpen);
this.Controls.Add(this.rtxNew);
this.Controls.Add(this.rtxOld);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox rtxOld;
private System.Windows.Forms.RichTextBox rtxNew;
private System.Windows.Forms.Button btnFileOpen;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnFilter;
private System.Windows.Forms.OpenFileDialog opdFile;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -