using System; namespace Microsoft.Windows.Forms { /// /// 边框样式 /// [Flags] public enum BorderVisibleStyle : int { /// /// 无 /// None = 0x0000, /// /// 左边框 /// Left = 0x0001, /// /// 上边框 /// Top = 0x0002, /// /// 右边框 /// Right = 0x0004, /// /// 下边框 /// Bottom = 0x0008, /// /// 所有边框 /// All = 0x000F, } }