|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System.Windows.Media;
-
- namespace XHWK.Model
- {
-
-
-
- public class Model_DrawData
- {
- private int _PageNum;
- private string _pageCode;
- private string _pageImagePath;
- private TranslateTransform _ImageLocation = new TranslateTransform(0, 0);
-
- private ScaleTransform _ImageSizes = new ScaleTransform(0, 0);
- private bool _IsImageLocation;
-
-
-
- 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 string PdfImagePath { get => _pdfImagePath; set => _pdfImagePath = value; }
-
-
-
- public bool IsImageLocation { get => _IsImageLocation; set => _IsImageLocation = value; }
-
-
-
- public bool ImgDocumentation { get => _imgDocumentation; set => _imgDocumentation = value; }
- public ScaleTransform ImageSizes { get => _ImageSizes; set => _ImageSizes = value; }
-
-
-
- public string Type { get => _type; set => _type = value; }
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|