|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Media;
-
- namespace XHWK.Model
- {
-
-
-
- public class Model_DrawData
- {
- private int _PageNum;
- private string _pageCode;
- private string _pageImagePath;
- private TranslateTransform _ImageLocation;
- private ScaleTransform _ImageSize;
- private bool _IsImageLocation;
-
-
-
- private string _pdfImagePath;
- private bool _imgDocumentation;
-
-
-
- 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; }
-
-
-
- public string PdfImagePath { get => _pdfImagePath; set => _pdfImagePath = value; }
-
-
-
- public bool IsImageLocation { get => _IsImageLocation; set => _IsImageLocation = value; }
-
-
-
- public bool ImgDocumentation { get => _imgDocumentation; set => _imgDocumentation = value; }
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|