⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 formtokenizersample.designer.cs

📁 用C#写的中文分词程序
💻 CS
字号:
namespace 中文分词测试程序
{
	partial class FormTokenizerSample
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.labelInputString = new System.Windows.Forms.Label();
			this.textBoxInputString = new System.Windows.Forms.TextBox();
			this.textBoxResult = new System.Windows.Forms.TextBox();
			this.labelResult = new System.Windows.Forms.Label();
			this.labelTokenizeTime = new System.Windows.Forms.Label();
			this.labelTokenizeTimeValue = new System.Windows.Forms.Label();
			this.buttonTokenize = new System.Windows.Forms.Button();
			this.linkLabelCopyright = new System.Windows.Forms.LinkLabel();
			this.SuspendLayout();
			// 
			// labelInputString
			// 
			this.labelInputString.AutoSize = true;
			this.labelInputString.Location = new System.Drawing.Point(12, 9);
			this.labelInputString.Name = "labelInputString";
			this.labelInputString.Size = new System.Drawing.Size(89, 12);
			this.labelInputString.TabIndex = 0;
			this.labelInputString.Text = "待处理字符串:";
			// 
			// textBoxInputString
			// 
			this.textBoxInputString.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			this.textBoxInputString.Location = new System.Drawing.Point(12, 24);
			this.textBoxInputString.Multiline = true;
			this.textBoxInputString.Name = "textBoxInputString";
			this.textBoxInputString.Size = new System.Drawing.Size(411, 138);
			this.textBoxInputString.TabIndex = 1;
			// 
			// textBoxResult
			// 
			this.textBoxResult.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			this.textBoxResult.Location = new System.Drawing.Point(12, 193);
			this.textBoxResult.Multiline = true;
			this.textBoxResult.Name = "textBoxResult";
			this.textBoxResult.ReadOnly = true;
			this.textBoxResult.Size = new System.Drawing.Size(411, 138);
			this.textBoxResult.TabIndex = 2;
			// 
			// labelResult
			// 
			this.labelResult.AutoSize = true;
			this.labelResult.Location = new System.Drawing.Point(12, 178);
			this.labelResult.Name = "labelResult";
			this.labelResult.Size = new System.Drawing.Size(65, 12);
			this.labelResult.TabIndex = 3;
			this.labelResult.Text = "分词结果:";
			// 
			// labelTokenizeTime
			// 
			this.labelTokenizeTime.AutoSize = true;
			this.labelTokenizeTime.Location = new System.Drawing.Point(12, 343);
			this.labelTokenizeTime.Name = "labelTokenizeTime";
			this.labelTokenizeTime.Size = new System.Drawing.Size(89, 12);
			this.labelTokenizeTime.TabIndex = 4;
			this.labelTokenizeTime.Text = "分词所用时间:";
			// 
			// labelTokenizeTimeValue
			// 
			this.labelTokenizeTimeValue.AutoSize = true;
			this.labelTokenizeTimeValue.ForeColor = System.Drawing.Color.Red;
			this.labelTokenizeTimeValue.Location = new System.Drawing.Point(107, 343);
			this.labelTokenizeTimeValue.Name = "labelTokenizeTimeValue";
			this.labelTokenizeTimeValue.Size = new System.Drawing.Size(0, 12);
			this.labelTokenizeTimeValue.TabIndex = 5;
			// 
			// buttonTokenize
			// 
			this.buttonTokenize.Location = new System.Drawing.Point(348, 338);
			this.buttonTokenize.Name = "buttonTokenize";
			this.buttonTokenize.Size = new System.Drawing.Size(75, 23);
			this.buttonTokenize.TabIndex = 6;
			this.buttonTokenize.Text = "分词处理";
			this.buttonTokenize.UseVisualStyleBackColor = true;
			this.buttonTokenize.Click += new System.EventHandler(this.buttonTokenize_Click);
			// 
			// linkLabelCopyright
			// 
			this.linkLabelCopyright.AutoSize = true;
			this.linkLabelCopyright.Location = new System.Drawing.Point(10, 372);
			this.linkLabelCopyright.Name = "linkLabelCopyright";
			this.linkLabelCopyright.Size = new System.Drawing.Size(89, 12);
			this.linkLabelCopyright.TabIndex = 7;
			this.linkLabelCopyright.TabStop = true;
			this.linkLabelCopyright.Text = "搜价网版权所有";
			this.linkLabelCopyright.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelCopyright_LinkClicked);
			// 
			// FormTokenizerSample
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(435, 393);
			this.Controls.Add(this.linkLabelCopyright);
			this.Controls.Add(this.buttonTokenize);
			this.Controls.Add(this.labelTokenizeTimeValue);
			this.Controls.Add(this.labelTokenizeTime);
			this.Controls.Add(this.labelResult);
			this.Controls.Add(this.textBoxResult);
			this.Controls.Add(this.textBoxInputString);
			this.Controls.Add(this.labelInputString);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.MaximizeBox = false;
			this.Name = "FormTokenizerSample";
			this.Text = "搜价网中文分词组件测试程序";
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.Label labelInputString;
		private System.Windows.Forms.TextBox textBoxInputString;
		private System.Windows.Forms.TextBox textBoxResult;
		private System.Windows.Forms.Label labelResult;
		private System.Windows.Forms.Label labelTokenizeTime;
		private System.Windows.Forms.Label labelTokenizeTimeValue;
		private System.Windows.Forms.Button buttonTokenize;
		private System.Windows.Forms.LinkLabel linkLabelCopyright;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -