using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PaintDotNet.Base.Enum { /// /// 二值样式 /// public enum StyleParameters { /// /// 实心 /// Solid, /// /// 边线 /// Sideline } }