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

📄 formmain.designer.cs

📁 KTDictSeg 简介: KTDictSeg 是由KaiToo搜索开发的一款基于字典的简单中英文分词算法 * 主要功能: 中英文分词
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace DictManage
{
    partial class FormMain
    {
        /// <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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
            this.menuStrip = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.loadFromTextFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveToTextFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
            this.loadFromBinFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveToBinFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openBinDictFile13ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveBinDictFile13ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openFileDialogDict = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialogDict = new System.Windows.Forms.SaveFileDialog();
            this.textBoxSearch = new System.Windows.Forms.TextBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.listBoxList = new System.Windows.Forms.ListBox();
            this.buttonSearch = new System.Windows.Forms.Button();
            this.panelMain = new System.Windows.Forms.Panel();
            this.buttonInsertFromUnknownWords = new System.Windows.Forms.Button();
            this.labelCount = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.buttonBatchInsert = new System.Windows.Forms.Button();
            this.buttonDelete = new System.Windows.Forms.Button();
            this.buttonUpdate = new System.Windows.Forms.Button();
            this.buttonInsert = new System.Windows.Forms.Button();
            this.label3 = new System.Windows.Forms.Label();
            this.numericUpDownFrequency = new System.Windows.Forms.NumericUpDown();
            this.label2 = new System.Windows.Forms.Label();
            this.textBoxWord = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.statusStrip = new System.Windows.Forms.StatusStrip();
            this.label = new System.Windows.Forms.ToolStripStatusLabel();
            this.openFileDialogName = new System.Windows.Forms.OpenFileDialog();
            this.posCtrl = new PosDisplayCtrl.PosCtrl();
            this.menuStrip.SuspendLayout();
            this.panel1.SuspendLayout();
            this.panelMain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownFrequency)).BeginInit();
            this.statusStrip.SuspendLayout();
            this.SuspendLayout();
            // 
            // menuStrip
            // 
            this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem});
            this.menuStrip.Location = new System.Drawing.Point(0, 0);
            this.menuStrip.Name = "menuStrip";
            this.menuStrip.Size = new System.Drawing.Size(792, 24);
            this.menuStrip.TabIndex = 0;
            this.menuStrip.Text = "menuStrip1";
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.loadFromTextFileToolStripMenuItem,
            this.saveToTextFileToolStripMenuItem,
            this.toolStripMenuItem1,
            this.loadFromBinFileToolStripMenuItem,
            this.saveToBinFileToolStripMenuItem,
            this.openBinDictFile13ToolStripMenuItem,
            this.saveBinDictFile13ToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
            this.fileToolStripMenuItem.Text = "文件(&F)";
            this.fileToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click);
            // 
            // loadFromTextFileToolStripMenuItem
            // 
            this.loadFromTextFileToolStripMenuItem.Name = "loadFromTextFileToolStripMenuItem";
            this.loadFromTextFileToolStripMenuItem.Size = new System.Drawing.Size(292, 22);
            this.loadFromTextFileToolStripMenuItem.Text = "打开文本格式的字典文件";
            this.loadFromTextFileToolStripMenuItem.Click += new System.EventHandler(this.loadFromTextFileToolStripMenuItem_Click);
            // 
            // saveToTextFileToolStripMenuItem
            // 
            this.saveToTextFileToolStripMenuItem.Name = "saveToTextFileToolStripMenuItem";
            this.saveToTextFileToolStripMenuItem.Size = new System.Drawing.Size(292, 22);
            this.saveToTextFileToolStripMenuItem.Text = "保存为文本格式的字典文件";
            this.saveToTextFileToolStripMenuItem.Click += new System.EventHandler(this.saveToTextFileToolStripMenuItem_Click);
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(289, 6);
            // 
            // loadFromBinFileToolStripMenuItem
            // 
            this.loadFromBinFileToolStripMenuItem.Name = "loadFromBinFileToolStripMenuItem";
            this.loadFromBinFileToolStripMenuItem.Size = new System.Drawing.Size(292, 22);
            this.loadFromBinFileToolStripMenuItem.Text = "打开1.3以下版本二进制格式的字典文件";
            this.loadFromBinFileToolStripMenuItem.Click += new System.EventHandler(this.loadFromBinFileToolStripMenuItem_Click);
            // 
            // saveToBinFileToolStripMenuItem
            // 
            this.saveToBinFileToolStripMenuItem.Name = "saveToBinFileToolStripMenuItem";
            this.saveToBinFileToolStripMenuItem.Size = new System.Drawing.Size(292, 22);
            this.saveToBinFileToolStripMenuItem.Text = "保存为1.3以下版本二进制格式的字典文件";
            this.saveToBinFileToolStripMenuItem.Click += new System.EventHandler(this.saveToBinFileToolStripMenuItem_Click);
            // 
            // openBinDictFile13ToolStripMenuItem
            // 
            this.openBinDictFile13ToolStripMenuItem.Name = "openBinDictFile13ToolStripMenuItem";
            this.openBinDictFile13ToolStripMenuItem.Size = new System.Drawing.Size(292, 22);
            this.openBinDictFile13ToolStripMenuItem.Text = "打开1.3以上版本二进制格式的字典文件";
            this.openBinDictFile13ToolStripMenuItem.Click += new System.EventHandler(this.openBinDictFile13ToolStripMenuItem_Click);
            // 
            // saveBinDictFile13ToolStripMenuItem
            // 
            this.saveBinDictFile13ToolStripMenuItem.Name = "saveBinDictFile13ToolStripMenuItem";
            this.saveBinDictFile13ToolStripMenuItem.Size = new System.Drawing.Size(292, 22);
            this.saveBinDictFile13ToolStripMenuItem.Text = "保存为1.3以上版本二进制格式的字典文件";
            this.saveBinDictFile13ToolStripMenuItem.Click += new System.EventHandler(this.saveBinDictFile13ToolStripMenuItem_Click);
            // 
            // textBoxSearch
            // 
            this.textBoxSearch.Location = new System.Drawing.Point(3, 3);
            this.textBoxSearch.Name = "textBoxSearch";
            this.textBoxSearch.Size = new System.Drawing.Size(162, 21);
            this.textBoxSearch.TabIndex = 2;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.listBoxList);
            this.panel1.Controls.Add(this.buttonSearch);
            this.panel1.Controls.Add(this.textBoxSearch);
            this.panel1.Location = new System.Drawing.Point(3, 13);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(239, 475);
            this.panel1.TabIndex = 3;
            // 
            // listBoxList
            // 
            this.listBoxList.FormattingEnabled = true;
            this.listBoxList.ItemHeight = 12;
            this.listBoxList.Location = new System.Drawing.Point(4, 31);
            this.listBoxList.Name = "listBoxList";
            this.listBoxList.Size = new System.Drawing.Size(228, 436);
            this.listBoxList.TabIndex = 4;
            this.listBoxList.SelectedIndexChanged += new System.EventHandler(this.listBoxList_SelectedIndexChanged);
            // 
            // buttonSearch
            // 
            this.buttonSearch.Location = new System.Drawing.Point(183, 1);
            this.buttonSearch.Name = "buttonSearch";
            this.buttonSearch.Size = new System.Drawing.Size(49, 23);
            this.buttonSearch.TabIndex = 3;
            this.buttonSearch.Text = "查找";
            this.buttonSearch.UseVisualStyleBackColor = true;
            this.buttonSearch.Click += new System.EventHandler(this.buttonSearch_Click);
            // 
            // panelMain
            // 
            this.panelMain.Controls.Add(this.buttonInsertFromUnknownWords);
            this.panelMain.Controls.Add(this.labelCount);
            this.panelMain.Controls.Add(this.label4);
            this.panelMain.Controls.Add(this.buttonBatchInsert);
            this.panelMain.Controls.Add(this.buttonDelete);
            this.panelMain.Controls.Add(this.buttonUpdate);
            this.panelMain.Controls.Add(this.buttonInsert);
            this.panelMain.Controls.Add(this.label3);
            this.panelMain.Controls.Add(this.numericUpDownFrequency);
            this.panelMain.Controls.Add(this.label2);
            this.panelMain.Controls.Add(this.textBoxWord);
            this.panelMain.Controls.Add(this.label1);
            this.panelMain.Controls.Add(this.panel1);
            this.panelMain.Controls.Add(this.posCtrl);
            this.panelMain.Enabled = false;
            this.panelMain.Location = new System.Drawing.Point(0, 27);
            this.panelMain.Name = "panelMain";
            this.panelMain.Size = new System.Drawing.Size(792, 540);
            this.panelMain.TabIndex = 4;
            // 
            // buttonInsertFromUnknownWords
            // 
            this.buttonInsertFromUnknownWords.Location = new System.Drawing.Point(607, 466);
            this.buttonInsertFromUnknownWords.Name = "buttonInsertFromUnknownWords";
            this.buttonInsertFromUnknownWords.Size = new System.Drawing.Size(173, 23);
            this.buttonInsertFromUnknownWords.TabIndex = 15;

⌨️ 快捷键说明

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