searchform.designer.cs
来自「KTDictSeg 简介: KTDictSeg 是由KaiToo搜索开发的一款基」· CS 代码 · 共 118 行
CS
118 行
namespace Demo.KTDictSegAnalyzer
{
partial class SearchForm
{
/// <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.menuStrip = new System.Windows.Forms.MenuStrip();
this.insertNewsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rebuildToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.batchInsertToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.webBrowserSearch = new System.Windows.Forms.WebBrowser();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.menuStrip.SuspendLayout();
this.SuspendLayout();
//
// menuStrip
//
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.insertNewsToolStripMenuItem,
this.rebuildToolStripMenuItem,
this.batchInsertToolStripMenuItem});
this.menuStrip.Location = new System.Drawing.Point(0, 0);
this.menuStrip.Name = "menuStrip";
this.menuStrip.Size = new System.Drawing.Size(548, 24);
this.menuStrip.TabIndex = 10;
//
// insertNewsToolStripMenuItem
//
this.insertNewsToolStripMenuItem.Name = "insertNewsToolStripMenuItem";
this.insertNewsToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
this.insertNewsToolStripMenuItem.Text = "插入新闻";
this.insertNewsToolStripMenuItem.Click += new System.EventHandler(this.insertNewsToolStripMenuItem_Click);
//
// rebuildToolStripMenuItem
//
this.rebuildToolStripMenuItem.Name = "rebuildToolStripMenuItem";
this.rebuildToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
this.rebuildToolStripMenuItem.Text = "重建索引";
this.rebuildToolStripMenuItem.Click += new System.EventHandler(this.rebuildToolStripMenuItem_Click);
//
// batchInsertToolStripMenuItem
//
this.batchInsertToolStripMenuItem.Name = "batchInsertToolStripMenuItem";
this.batchInsertToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
this.batchInsertToolStripMenuItem.Text = "批量插入";
this.batchInsertToolStripMenuItem.Click += new System.EventHandler(this.batchInsertToolStripMenuItem_Click);
//
// webBrowserSearch
//
this.webBrowserSearch.Dock = System.Windows.Forms.DockStyle.Fill;
this.webBrowserSearch.Location = new System.Drawing.Point(0, 24);
this.webBrowserSearch.MinimumSize = new System.Drawing.Size(20, 20);
this.webBrowserSearch.Name = "webBrowserSearch";
this.webBrowserSearch.Size = new System.Drawing.Size(548, 377);
this.webBrowserSearch.TabIndex = 11;
this.webBrowserSearch.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowserSearch_DocumentCompleted);
//
// openFileDialog
//
this.openFileDialog.DefaultExt = "xml";
this.openFileDialog.FileName = "news.xml";
this.openFileDialog.Filter = "xml|*.xml";
//
// SearchForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(548, 401);
this.Controls.Add(this.webBrowserSearch);
this.Controls.Add(this.menuStrip);
this.MainMenuStrip = this.menuStrip;
this.Name = "SearchForm";
this.Text = "新闻索引";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.SearchForm_Load);
this.menuStrip.ResumeLayout(false);
this.menuStrip.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip;
private System.Windows.Forms.ToolStripMenuItem insertNewsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem rebuildToolStripMenuItem;
private System.Windows.Forms.WebBrowser webBrowserSearch;
private System.Windows.Forms.ToolStripMenuItem batchInsertToolStripMenuItem;
private System.Windows.Forms.OpenFileDialog openFileDialog;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?