📄 form1.designer.cs
字号:
namespace TextEditor
{
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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.menuFile = new System.Windows.Forms.ToolStripMenuItem();
this.menuFileNew = new System.Windows.Forms.ToolStripMenuItem();
this.menuFileOpen = new System.Windows.Forms.ToolStripMenuItem();
this.menuFileSave = new System.Windows.Forms.ToolStripMenuItem();
this.menuFileSaveAs = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
this.menuFileExit = new System.Windows.Forms.ToolStripMenuItem();
this.menuEdit = new System.Windows.Forms.ToolStripMenuItem();
this.menuEditUndo = new System.Windows.Forms.ToolStripMenuItem();
this.menuEditRedo = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
this.menuEditCut = new System.Windows.Forms.ToolStripMenuItem();
this.menuEditCopy = new System.Windows.Forms.ToolStripMenuItem();
this.menuEditPaste = new System.Windows.Forms.ToolStripMenuItem();
this.menuEditDelete = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
this.menuEditFind = new System.Windows.Forms.ToolStripMenuItem();
this.menuEditReplace = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
this.menuEditSelectAll = new System.Windows.Forms.ToolStripMenuItem();
this.menuEditDate = new System.Windows.Forms.ToolStripMenuItem();
this.meunFormat = new System.Windows.Forms.ToolStripMenuItem();
this.menuAutoNewLine = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripSeparator();
this.meunFormatFont = new System.Windows.Forms.ToolStripMenuItem();
this.meunFormatColor = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator();
this.工具条ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuShowToolTxt = new System.Windows.Forms.ToolStripMenuItem();
this.menuDontShowToolTxt = new System.Windows.Forms.ToolStripMenuItem();
this.menuHelp = new System.Windows.Forms.ToolStripMenuItem();
this.menuHelpTheme = new System.Windows.Forms.ToolStripMenuItem();
this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripSeparator();
this.menuHelpAbout = new System.Windows.Forms.ToolStripMenuItem();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.rightBtnCut = new System.Windows.Forms.ToolStripMenuItem();
this.rightBtnCopy = new System.Windows.Forms.ToolStripMenuItem();
this.rightBtnPaste = new System.Windows.Forms.ToolStripMenuItem();
this.rightBtnDelete = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripSeparator();
this.rightBtnSelAll = new System.Windows.Forms.ToolStripMenuItem();
this.rightBtnDate = new System.Windows.Forms.ToolStripMenuItem();
this.toolBar1 = new System.Windows.Forms.ToolBar();
this.toolBarNew = new System.Windows.Forms.ToolBarButton();
this.toolBarOpen = new System.Windows.Forms.ToolBarButton();
this.toolBarSave = new System.Windows.Forms.ToolBarButton();
this.toolBarUndo = new System.Windows.Forms.ToolBarButton();
this.toolBarSelectAll = new System.Windows.Forms.ToolBarButton();
this.toolBarCut = new System.Windows.Forms.ToolBarButton();
this.toolBarCopy = new System.Windows.Forms.ToolBarButton();
this.toolBarPaste = new System.Windows.Forms.ToolBarButton();
this.toolBarDelete = new System.Windows.Forms.ToolBarButton();
this.toolBarFind = new System.Windows.Forms.ToolBarButton();
this.toolBarReplace = new System.Windows.Forms.ToolBarButton();
this.toolBarFont = new System.Windows.Forms.ToolBarButton();
this.toolBarColor = new System.Windows.Forms.ToolBarButton();
this.toolBarHelp = new System.Windows.Forms.ToolBarButton();
this.toolBarAbout = new System.Windows.Forms.ToolBarButton();
this.statusBar1 = new System.Windows.Forms.StatusBar();
this.statusBarLocation = new System.Windows.Forms.StatusBarPanel();
this.statusBarLines = new System.Windows.Forms.StatusBarPanel();
this.statusBarTime = new System.Windows.Forms.StatusBarPanel();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.fontDialog1 = new System.Windows.Forms.FontDialog();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.复制ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.statusBarLocation)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarLines)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarTime)).BeginInit();
this.SuspendLayout();
//
// menuStrip1
//
resources.ApplyResources(this.menuStrip1, "menuStrip1");
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuFile,
this.menuEdit,
this.meunFormat,
this.menuHelp});
this.menuStrip1.Name = "menuStrip1";
//
// menuFile
//
this.menuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuFileNew,
this.menuFileOpen,
this.menuFileSave,
this.menuFileSaveAs,
this.toolStripMenuItem2,
this.menuFileExit});
this.menuFile.Name = "menuFile";
resources.ApplyResources(this.menuFile, "menuFile");
//
// menuFileNew
//
this.menuFileNew.Name = "menuFileNew";
resources.ApplyResources(this.menuFileNew, "menuFileNew");
this.menuFileNew.Click += new System.EventHandler(this.menuFileNew_Click);
//
// menuFileOpen
//
this.menuFileOpen.Name = "menuFileOpen";
resources.ApplyResources(this.menuFileOpen, "menuFileOpen");
this.menuFileOpen.Click += new System.EventHandler(this.menuFileOpen_Click);
//
// menuFileSave
//
this.menuFileSave.Name = "menuFileSave";
resources.ApplyResources(this.menuFileSave, "menuFileSave");
this.menuFileSave.Click += new System.EventHandler(this.menuFileSave_Click);
//
// menuFileSaveAs
//
this.menuFileSaveAs.Name = "menuFileSaveAs";
resources.ApplyResources(this.menuFileSaveAs, "menuFileSaveAs");
this.menuFileSaveAs.Click += new System.EventHandler(this.menuFileSaveAs_Click);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
resources.ApplyResources(this.toolStripMenuItem2, "toolStripMenuItem2");
//
// menuFileExit
//
this.menuFileExit.Name = "menuFileExit";
resources.ApplyResources(this.menuFileExit, "menuFileExit");
this.menuFileExit.Click += new System.EventHandler(this.menuFileExit_Click);
//
// menuEdit
//
this.menuEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuEditUndo,
this.menuEditRedo,
this.toolStripMenuItem4,
this.menuEditCut,
this.menuEditCopy,
this.menuEditPaste,
this.menuEditDelete,
this.toolStripMenuItem1,
this.menuEditFind,
this.menuEditReplace,
this.toolStripMenuItem3,
this.menuEditSelectAll,
this.menuEditDate});
this.menuEdit.Name = "menuEdit";
resources.ApplyResources(this.menuEdit, "menuEdit");
//
// menuEditUndo
//
this.menuEditUndo.Name = "menuEditUndo";
resources.ApplyResources(this.menuEditUndo, "menuEditUndo");
this.menuEditUndo.Click += new System.EventHandler(this.menuEditUndo_Click);
//
// menuEditRedo
//
this.menuEditRedo.Name = "menuEditRedo";
resources.ApplyResources(this.menuEditRedo, "menuEditRedo");
this.menuEditRedo.Click += new System.EventHandler(this.menuEditRedo_Click);
//
// toolStripMenuItem4
//
this.toolStripMenuItem4.Name = "toolStripMenuItem4";
resources.ApplyResources(this.toolStripMenuItem4, "toolStripMenuItem4");
//
// menuEditCut
//
this.menuEditCut.Name = "menuEditCut";
resources.ApplyResources(this.menuEditCut, "menuEditCut");
this.menuEditCut.Click += new System.EventHandler(this.menuEditCut_Click);
//
// menuEditCopy
//
this.menuEditCopy.Name = "menuEditCopy";
resources.ApplyResources(this.menuEditCopy, "menuEditCopy");
this.menuEditCopy.Click += new System.EventHandler(this.menuEditCopy_Click);
//
// menuEditPaste
//
this.menuEditPaste.Name = "menuEditPaste";
resources.ApplyResources(this.menuEditPaste, "menuEditPaste");
this.menuEditPaste.Click += new System.EventHandler(this.menuEditPaste_Click);
//
// menuEditDelete
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -