using System; namespace MGdu.WinFormUI.MyGraphics { /// /// 圆角样式 /// public enum RoundStyle { /// /// 无 /// None, /// /// 所有 /// All, /// /// 上 /// Top, /// /// 下 /// Bottom, /// /// 左 /// Left, /// /// 右 /// Right } }