toolbartype.cs
来自「FreeTextBox在线编辑控件 线编辑控件」· CS 代码 · 共 25 行
CS
25 行
using System;
namespace FreeTextBoxControls {
/// <summary>
/// Determines how the toolbars and its buttons and dropdownlists are displayed
/// </summary>
public enum ToolbarType {
/// <summary>
/// Sets images, borders and backcolors to Office XP style
/// </summary>
OfficeXP = 0,
/// <summary>
/// Sets images, borders and backcolors to Office 2000 style
/// </summary>
Office2000 = 1,
/// <summary>
/// Sets images, borders and backcolors to Office 2003 style
/// </summary>
Office2003 = 2,
/// <summary>
/// You must use this setting if you want custom colors. Otherwise the other settings will override your settings.
/// </summary>
Custom = 3
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?