enumerations.cs
来自「c#编写的仿OUTLOOK工具条的Winform菜单」· CS 代码 · 共 27 行
CS
27 行
using System;
namespace UtilityLibrary.General
{
public enum VisualStyle
{
IDE = 0,
Plain = 1
}
public enum Direction
{
Vertical = 0,
Horizontal = 1
}
public enum DrawState
{
Normal,
Disable,
Hot,
Pressed
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?