using System.ComponentModel; namespace PaintDotNet.Annotation.Enum { /// /// 工具枚举 /// 包含标注、测量、视场 /// 还会有一些其它工具 /// public enum CameraParamType { // 鼠标指针 Pointer, /// /// 调节 /// [Description("Adjust")] Adjust, /// ///边框 /// [Description("Frame")] Frame, /// ///常规 /// [Description("Common")] Common, } }