using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XHWK.Model { /// /// 画板模型 /// public class Model_DrawData { private int _PageNum; private string _pageCode; private string _pageImagePath; private PointF _ImageLocation; private SizeF _ImageSize; private string _PenColor; private int _PenWigth; //private List _Handwriting; /// /// 页码 /// public int PageNum { get => _PageNum; set => _PageNum = value; } /// /// 页编号 /// public string PageCode { get => _pageCode; set => _pageCode = value; } /// /// 页面图片路径 /// public string PageImagePath { get => _pageImagePath; set => _pageImagePath = value; } /// /// 图片坐标 /// public PointF ImageLocation { get => _ImageLocation; set => _ImageLocation = value; } /// /// 图片大小 /// public SizeF ImageSize { get => _ImageSize; set => _ImageSize = value; } /// /// 笔颜色 十六进制 /// public string PenColor { get => _PenColor; set => _PenColor = value; } /// /// 线宽 /// public int PenWigth { get => _PenWigth; set => _PenWigth = value; } ///// ///// 笔迹 暂无 ///// //public List Handwriting { get => _Handwriting; set => _Handwriting = value; } } }