📄 form1.designer.cs
字号:
namespace PrivateFont
{
partial class MainForm
{
/// <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.mainMenu = new System.Windows.Forms.MainMenu();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.menuItem4 = new System.Windows.Forms.MenuItem();
this.menuItem8 = new System.Windows.Forms.MenuItem();
this.menuItem5 = new System.Windows.Forms.MenuItem();
this.menuItem2 = new System.Windows.Forms.MenuItem();
this.menuItem3 = new System.Windows.Forms.MenuItem();
this.menuItem6 = new System.Windows.Forms.MenuItem();
this.menuItem7 = new System.Windows.Forms.MenuItem();
this.lstFonts = new System.Windows.Forms.ListView();
this.SuspendLayout();
//
// mainMenu
//
this.mainMenu.MenuItems.Add(this.menuItem1);
this.mainMenu.MenuItems.Add(this.menuItem2);
//
// menuItem1
//
this.menuItem1.MenuItems.Add(this.menuItem4);
this.menuItem1.MenuItems.Add(this.menuItem8);
this.menuItem1.MenuItems.Add(this.menuItem5);
this.menuItem1.Text = "文件";
//
// menuItem4
//
this.menuItem4.Text = "加载其它字体文件";
//
// menuItem8
//
this.menuItem8.Text = "移除字体文件";
//
// menuItem5
//
this.menuItem5.Text = "退出";
//
// menuItem2
//
this.menuItem2.MenuItems.Add(this.menuItem3);
this.menuItem2.MenuItems.Add(this.menuItem6);
this.menuItem2.MenuItems.Add(this.menuItem7);
this.menuItem2.Text = "系统";
//
// menuItem3
//
this.menuItem3.Text = "设置";
//
// menuItem6
//
this.menuItem6.Text = "帮助";
//
// menuItem7
//
this.menuItem7.Text = "关于";
this.menuItem7.Click += new System.EventHandler(this.menuItem7_Click);
//
// lstFonts
//
this.lstFonts.CheckBoxes = true;
this.lstFonts.Dock = System.Windows.Forms.DockStyle.Fill;
this.lstFonts.Location = new System.Drawing.Point(0, 0);
this.lstFonts.Name = "lstFonts";
this.lstFonts.Size = new System.Drawing.Size(240, 268);
this.lstFonts.TabIndex = 0;
this.lstFonts.View = System.Windows.Forms.View.List;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.lstFonts);
this.Menu = this.mainMenu;
this.MinimizeBox = false;
this.Name = "MainForm";
this.Text = "字体酷";
this.Load += new System.EventHandler(this.MainForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MainMenu mainMenu;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.MenuItem menuItem4;
private System.Windows.Forms.MenuItem menuItem5;
private System.Windows.Forms.MenuItem menuItem2;
private System.Windows.Forms.MenuItem menuItem3;
private System.Windows.Forms.MenuItem menuItem6;
private System.Windows.Forms.MenuItem menuItem7;
private System.Windows.Forms.MenuItem menuItem8;
private System.Windows.Forms.ListView lstFonts;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -