123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.Model.HomePageToolsDialogs
- {
- public class HomePageSplitDialogModel:BindableBase
- {
- /// <summary>
- /// 拆分模式
- /// </summary>
- public SplitMode Mode = SplitMode.AveragePages;
- /// <summary>
- /// 拆分模式份数或者页数
- /// </summary>
- public int GetModeCount = 1;
- /// <summary>
- /// 页面信息
- /// </summary>
- public string PageRange = "1,3-4,10";
- /// <summary>
- /// 文件名标签
- /// </summary>
- private string fileNameLabel = "part";
- public string FileNameLabel
- {
- get { return fileNameLabel; }
- set
- {
- SetProperty(ref fileNameLabel, value);
- RefreshFileName();
- }
- }
- private bool hasLabel = true;
- /// <summary>
- /// 是否含有标签
- /// </summary>
- public bool HasLabel
- {
- get { return hasLabel; }
- set
- {
- SetProperty(ref hasLabel, value);
- RefreshFileName();
- }
- }
- /// <summary>
- /// 文件名与标签分隔符
- /// </summary>
- private string fileNameDeimiter="-";
- public string FileNameDeimiter
- {
- get { return fileNameDeimiter; }
- set
- {
- SetProperty(ref fileNameDeimiter, value);
- RefreshFileName();
- }
- }
- private bool hasDeimiter = true;
- /// <summary>
- /// 是否含有分隔符
- /// </summary>
- public bool HasDeimiter
- {
- get { return hasDeimiter; }
- set
- {
- SetProperty(ref hasDeimiter, value);
- RefreshFileName();
- }
- }
- /// <summary>
- /// 文件名与标签分隔符
- /// </summary>
- public bool FrontFileName = true;
- /// <summary>
- /// 页码 存入页码范围;
- /// </summary>
- public List<int> PageParm = new List<int> { };
- /// <summary>
- /// 文件名;
- /// </summary>
- private string fileName = "";
- public string FileName
- {
- get { return fileName; }
- set
- {
- SetProperty(ref fileName, value);
- }
- }
- private bool isSourceNameFront = true;
- /// <summary>
- /// 原始文档名前置
- /// </summary>
- public bool IsSourceNameFront
- {
- get { return isSourceNameFront; }
- set
- {
- SetProperty(ref isSourceNameFront, value);
- RefreshFileName();
- }
- }
- private string sourceName;
- /// <summary>
- /// 原始文件名
- /// </summary>
- public string SourceFileName
- {
- get { return sourceName; }
- set
- {
- SetProperty(ref sourceName, value);
- RefreshFileName();
- }
- }
- /// <summary>
- /// 刷新文件名
- /// </summary>
- public void RefreshFileName()
- {
- string label = HasLabel ? FileNameLabel : "";
- string deimiter = hasDeimiter ? FileNameDeimiter : "";
- if(isSourceNameFront)
- {
- FileName = SourceFileName + deimiter + label + ".pdf";
- }
- else
- {
- FileName = label + deimiter + SourceFileName + ".pdf";
- }
- }
- public enum SplitMode
- {
- /// <summary>
- /// 按页平均拆分
- /// </summary>
- AveragePages,
- /// <summary>
- /// 按文件平均拆分
- /// </summary>
- AverageFiles,
- /// <summary>
- /// 自定义页码范围拆分
- /// </summary>
- CustomPageRange
- }
- }
- }
|