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