using System.Windows.Media; namespace XHWK.Model { /// /// 画板模型 /// public class ModelDrawData { private int _pageNum; private string _pageCode; private string _pageImagePath; private TranslateTransform _imageLocation = new TranslateTransform(0, 0); //private ScaleTransform _ImageSize = new ScaleTransform(0, 0); private ScaleTransform _imageSizes = new ScaleTransform(0, 0); private bool _isImageLocation; //private string _PenColor; //private int _PenWigth; //private List _Handwriting; private string _pdfImagePath; private bool _imgDocumentation; private string _type; /// /// 页码 /// 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 TranslateTransform ImageLocation { get => _imageLocation; set => _imageLocation = value; } ///// ///// 图片大小 ///// //public ScaleTransform ImageSize { get => _ImageSize; set => _ImageSize = value; } /// /// PDF 图片路径 /// public string PdfImagePath { get => _pdfImagePath; set => _pdfImagePath = value; } /// /// 坐标是否固定 /// public bool IsImageLocation { get => _isImageLocation; set => _isImageLocation = value; } /// /// true 文档图片 folse 截图图片 /// public bool ImgDocumentation { get => _imgDocumentation; set => _imgDocumentation = value; } public ScaleTransform ImageSizes { get => _imageSizes; set => _imageSizes = value; } /// /// ppt word /// public string Type { get => _type; set => _type = 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; } } }