using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PaintDotNet.Base.Enum { public enum SomeStyle { /// /// 箭头 /// Arrow, /// /// 圆点 /// Dot, /// ///三角形 /// Triangle } }