星火微课系统客户端
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.

Model_DrawData.cs 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace XHWK.Model
  8. {
  9. /// <summary>
  10. /// 画板模型
  11. /// </summary>
  12. public class Model_DrawData
  13. {
  14. private int _PageNum;
  15. private string _pageCode;
  16. private string _pageImagePath;
  17. private PointF _ImageLocation;
  18. private SizeF _ImageSize;
  19. private string _PenColor;
  20. private int _PenWigth;
  21. //private List<PointF> _Handwriting;
  22. /// <summary>
  23. /// 页码
  24. /// </summary>
  25. public int PageNum { get => _PageNum; set => _PageNum = value; }
  26. /// <summary>
  27. /// 页编号
  28. /// </summary>
  29. public string PageCode { get => _pageCode; set => _pageCode = value; }
  30. /// <summary>
  31. /// 页面图片路径
  32. /// </summary>
  33. public string PageImagePath { get => _pageImagePath; set => _pageImagePath = value; }
  34. /// <summary>
  35. /// 图片坐标
  36. /// </summary>
  37. public PointF ImageLocation { get => _ImageLocation; set => _ImageLocation = value; }
  38. /// <summary>
  39. /// 图片大小
  40. /// </summary>
  41. public SizeF ImageSize { get => _ImageSize; set => _ImageSize = value; }
  42. /// <summary>
  43. /// 笔颜色 十六进制
  44. /// </summary>
  45. public string PenColor { get => _PenColor; set => _PenColor = value; }
  46. /// <summary>
  47. /// 线宽
  48. /// </summary>
  49. public int PenWigth { get => _PenWigth; set => _PenWigth = value; }
  50. ///// <summary>
  51. ///// 笔迹 暂无
  52. ///// </summary>
  53. //public List<PointF> Handwriting { get => _Handwriting; set => _Handwriting = value; }
  54. }
  55. }