星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Tool.cs 325B

12345678910111213141516
  1. namespace ComeCapture.Models
  2. {
  3. public enum Tool
  4. {
  5. Null,//无状态可移动
  6. Rectangle,//长方形
  7. Ellipse,//圆形
  8. Line,//画刷
  9. Text,//文字
  10. Arrow,//箭头
  11. Revoke,//撤销
  12. Save,//保存
  13. Cancel,//退出截图
  14. OK//完成截图
  15. }
  16. }