HomePageBackgroundDialogViewModel.cs 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  1. using Prism.Commands;
  2. using Prism.Mvvm;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Data;
  7. using System.Windows;
  8. using PDF_Office.Helper;
  9. using Prism.Regions;
  10. using ComPDFKit.PDFDocument;
  11. using PDF_Office.CustomControl;
  12. using PDF_Office.Model.Dialog.HomePageToolsDialogs.HomePageBatchProcessing;
  13. using PDF_Office.Model;
  14. using System.Diagnostics;
  15. using System.IO;
  16. using System.Windows.Forms;
  17. using Prism.Events;
  18. using ComPDFKitViewer.PdfViewer;
  19. using PDF_Office.EventAggregators;
  20. using PDFSettings;
  21. using PDF_Office.Model.EditTools.Bates;
  22. using PDF_Office.Model.EditTools.Background;
  23. using static System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify;
  24. using Prism.Services.Dialogs;
  25. namespace PDF_Office.ViewModels.Dialog.HomePageToolsDialogs.HomePageBatchProcessing.HomePageBackground
  26. {
  27. public class HomePageBackgroundDialogViewModel : BindableBase, INavigationAware
  28. {
  29. #region 参数和属性
  30. private List<string> fileNames;
  31. public BackgroundInfo BackgroundInfo;
  32. private CPDFDocument tempDocument;
  33. public string PageNumber = "";
  34. private CPDFBackground background;
  35. public IRegionManager backgroundRegion;
  36. public IEventAggregator eventAggregator;
  37. public IDialogService dialogs;
  38. private CPDFViewer PDFViewer;
  39. private ViewContentViewModel viewContentViewModel;
  40. public string TemplateListBaseName = "HomePageBackgroundTemplateListBaseContent";
  41. public string CreateBaseName = "HomePageBackgroundCreateBaseContent";
  42. public string CreateModColorName = "HomePageBackgroundCreateColorContent";
  43. public string CreateModFileName = "HomePageBackgroundCreateFileContent";
  44. public string TemplateListModColorName = "HomePageBackgroundTemplateListColorContent";
  45. public string TemplateListModFileName = "HomePageBackgroundTemplateListFileContent";
  46. private string _backgroundSettingsRegionName;
  47. /// <summary>
  48. /// 属性设置Region
  49. /// </summary>
  50. public string BackgroundSettingsRegionName
  51. {
  52. get { return _backgroundSettingsRegionName; }
  53. set { _backgroundSettingsRegionName = value; }
  54. }
  55. private Visibility _backgroundSettingsVisible = Visibility.Collapsed;
  56. /// <summary>
  57. /// 属性设置Region可见
  58. /// </summary>
  59. public Visibility BackgroundSettingsVisible
  60. {
  61. get { return _backgroundSettingsVisible; }
  62. set { _backgroundSettingsVisible = value; }
  63. }
  64. private EnumColorOrFile _currentCreateMod;
  65. public EnumColorOrFile CurrentCreateMod
  66. {
  67. get { return _currentCreateMod; }
  68. set { _currentCreateMod = value; }
  69. }
  70. private EnumColorOrFile _currentTemplateListMod;
  71. public EnumColorOrFile CurrentTemplateListMod
  72. {
  73. get { return _currentTemplateListMod; }
  74. set { _currentTemplateListMod = value; }
  75. }
  76. public List<int> fileNamesView = new List<int>();
  77. private int fileNamesIndex = 0;
  78. private int FileNameNumber = 0;
  79. private string backgroundGridIsEnabled = "True";
  80. public string BackgroundGridIsEnabled
  81. {
  82. get
  83. {
  84. return backgroundGridIsEnabled;
  85. }
  86. set
  87. {
  88. SetProperty(ref backgroundGridIsEnabled, value);
  89. }
  90. }
  91. private string setBackgroundGridIsEnabled = "True";
  92. public string SetBackgroundGridIsEnabled
  93. {
  94. get
  95. {
  96. return setBackgroundGridIsEnabled;
  97. }
  98. set
  99. {
  100. SetProperty(ref setBackgroundGridIsEnabled, value);
  101. }
  102. }
  103. private DataTable pdfDataTable = new DataTable();
  104. public DataTable PDFDataTable
  105. {
  106. get { return pdfDataTable; }
  107. set
  108. {
  109. SetProperty(ref pdfDataTable, value);
  110. }
  111. }
  112. private DataTable pdfCurrentDataTable = new DataTable();
  113. public DataTable PDFCurrentDataTable
  114. {
  115. get { return pdfCurrentDataTable; }
  116. set
  117. {
  118. SetProperty(ref pdfCurrentDataTable, value);
  119. }
  120. }
  121. private string removeIsEnable = "False";
  122. public string RemoveIsEnable
  123. {
  124. get { return removeIsEnable; }
  125. set
  126. {
  127. SetProperty(ref removeIsEnable, value);
  128. }
  129. }
  130. private string selectFileName = "False";
  131. public string SelectFileName
  132. {
  133. get { return selectFileName; }
  134. set
  135. {
  136. SetProperty(ref selectFileName, value);
  137. }
  138. }
  139. private string backgroundRegionName;
  140. public string BackgroundRegionName
  141. {
  142. get
  143. {
  144. return backgroundRegionName;
  145. }
  146. set
  147. {
  148. SetProperty(ref backgroundRegionName, value);
  149. }
  150. }
  151. private Visibility backgroundVisible = Visibility.Collapsed;
  152. public Visibility BackgroundVisible
  153. {
  154. get { return backgroundVisible; }
  155. set { SetProperty(ref backgroundVisible, value); }
  156. }
  157. private Visibility addFileVisibility = Visibility.Hidden;
  158. public Visibility AddFileVisibility
  159. {
  160. get { return addFileVisibility; }
  161. set
  162. {
  163. SetProperty(ref addFileVisibility, value);
  164. RaisePropertyChanged();
  165. }
  166. }
  167. private string createGridSpan = "1";
  168. public string CreateGridSpan
  169. {
  170. get { return createGridSpan; }
  171. set
  172. {
  173. SetProperty(ref createGridSpan, value);
  174. RaisePropertyChanged();
  175. }
  176. }
  177. private Visibility createGridSpanVisibility = Visibility.Visible;
  178. public Visibility CreateGridSpanVisibility
  179. {
  180. get { return createGridSpanVisibility; }
  181. set
  182. {
  183. SetProperty(ref createGridSpanVisibility, value);
  184. RaisePropertyChanged();
  185. }
  186. }
  187. #endregion
  188. #region 委托声明
  189. public DelegateCommand ADDPDFCommand { get; set; }
  190. public DelegateCommand ADDOpenedPDFCommand { get; set; }
  191. public DelegateCommand RemovePDFFileCommand { get; set; }
  192. public DelegateCommand CreateCommand { get; set; }
  193. public DelegateCommand ADDPDFFilesCommand { get; set; }
  194. #endregion
  195. public string Unicode = null;
  196. public HomePageBackgroundDialogViewModel(IRegionManager backgroundRegion, IEventAggregator eventAggregator, IDialogService dialogs)
  197. {
  198. this.eventAggregator = eventAggregator;
  199. this.backgroundRegion = backgroundRegion;
  200. this.dialogs = dialogs;
  201. PDFCurrentDataTable.Columns.Add("FilePageRangeText");
  202. PDFCurrentDataTable.Columns.Add("FilePageRangeSelectIndex");
  203. PDFCurrentDataTable.Columns.Add("IsEvenPageIsEnabled");
  204. PDFCurrentDataTable.Columns.Add("FileState");
  205. PDFDataTable.Columns.Add("FileName");
  206. PDFDataTable.Columns.Add("FilePageRangeText");
  207. PDFDataTable.Columns.Add("FilePageRangeSelectIndex");
  208. PDFDataTable.Columns.Add("IsEvenPageIsEnabled");
  209. PDFDataTable.Columns.Add("MaxPageRange");
  210. PDFDataTable.Columns.Add("FileSize");
  211. PDFDataTable.Columns.Add("FileState");
  212. Unicode = Guid.NewGuid().ToString();
  213. BackgroundSettingsVisible = Visibility.Visible;
  214. ADDPDFCommand = new DelegateCommand(addpicture);
  215. ADDOpenedPDFCommand = new DelegateCommand(addOpenedPDFFiles);
  216. ADDPDFFilesCommand = new DelegateCommand(addpicturefiles);
  217. RemovePDFFileCommand = new DelegateCommand(removepdffile);
  218. CreateCommand = new DelegateCommand(create);
  219. BackgroundSettingsRegionName = Guid.NewGuid().ToString();
  220. eventAggregator.GetEvent<EnterTemplateListOrCreateEvent>().Subscribe(EnterTemplateListOrCreate, e => e.Unicode == Unicode);
  221. eventAggregator.GetEvent<SetCurrentCreateModEvent>().Subscribe(SetCurrentCreateMod, e => e.Unicode == Unicode);
  222. eventAggregator.GetEvent<SetCurrentTemplateListModEvent>().Subscribe(SetCurrentTemplateListMod, e => e.Unicode == Unicode);
  223. eventAggregator.GetEvent<EditBackgroundTemplateItemEvent>().Subscribe(EditBackgroundTemplateItem, e => e.Unicode == Unicode);
  224. }
  225. #region 逻辑函数
  226. public void EnterTemplateListOrCreate(EnumTemplateListOrCreateUnicode enumTemplateListOrCreateunicode)
  227. {
  228. EnumTemplateListOrCreate enumTemplateListOrCreate = enumTemplateListOrCreateunicode.Status;
  229. if (enumTemplateListOrCreate == EnumTemplateListOrCreate.StatusTemplate)
  230. {
  231. CreateGridSpan = "1";
  232. CreateGridSpanVisibility = Visibility.Visible;
  233. EnterSelectedContent(TemplateListBaseName);
  234. }
  235. else
  236. {
  237. CreateGridSpan = "2";
  238. CreateGridSpanVisibility = Visibility.Collapsed;
  239. EnterSelectedContent(CreateBaseName);
  240. }
  241. }
  242. public void EnterSelectedContent(string SelectedContentName)
  243. {
  244. NavigationParameters param = new NavigationParameters();
  245. param.Add(ParameterNames.PDFViewer, PDFViewer);
  246. param.Add("Unicode", Unicode);
  247. param.Add("ViewModel", this);
  248. if (SelectedContentName == TemplateListBaseName)
  249. {
  250. param.Add("CurrentCreateModName", CurrentCreateMod);
  251. }
  252. else if (SelectedContentName == CreateBaseName)
  253. {
  254. param.Add("CurrentTemplateListModName", CurrentTemplateListMod);
  255. }
  256. backgroundRegion.RequestNavigate(BackgroundSettingsRegionName, SelectedContentName, param);
  257. BackgroundSettingsVisible = Visibility.Visible;
  258. }
  259. public void SetCurrentCreateMod(stringUnicode currentCreateModNameunicode)
  260. {
  261. string currentCreateModName = currentCreateModNameunicode.Status;
  262. if (currentCreateModName == CreateModColorName)
  263. {
  264. CurrentCreateMod = EnumColorOrFile.StatusColor;
  265. }
  266. else if (currentCreateModName == CreateModFileName)
  267. {
  268. CurrentCreateMod = EnumColorOrFile.StatusFile;
  269. }
  270. }
  271. public void SetCurrentTemplateListMod(stringUnicode currentTemplateListModNameunicode)
  272. {
  273. string currentTemplateListModName = currentTemplateListModNameunicode.Status;
  274. if (currentTemplateListModName == TemplateListModColorName)
  275. {
  276. CurrentTemplateListMod = EnumColorOrFile.StatusColor;
  277. }
  278. else if (currentTemplateListModName == TemplateListModFileName)
  279. {
  280. CurrentTemplateListMod = EnumColorOrFile.StatusFile;
  281. }
  282. }
  283. public void EditBackgroundTemplateItem(BackgroundItemUnicode backgroundItemunicode)
  284. {
  285. BackgroundItem backgroundItem = backgroundItemunicode.Status;
  286. NavigationParameters param = new NavigationParameters();
  287. param.Add(ParameterNames.PDFViewer, PDFViewer);
  288. param.Add("CurrentTemplateListModName", CurrentTemplateListMod);
  289. param.Add("Unicode", Unicode);
  290. param.Add("BackgroundItem", backgroundItem);
  291. backgroundRegion.RequestNavigate(BackgroundSettingsRegionName, CreateBaseName, param);
  292. BackgroundSettingsVisible = Visibility.Visible;
  293. CreateGridSpan = "2";
  294. CreateGridSpanVisibility = Visibility.Collapsed;
  295. }
  296. private void create()
  297. {
  298. HomePageBatchProcessingDialogModel.closeDialog = true;
  299. updateListview("wait");
  300. fileNamesIndex = 0;
  301. BackgroundGridIsEnabled = "False";
  302. foreach (var filename in fileNames)
  303. {
  304. FileInfo fileinfo = new FileInfo(filename);
  305. string OutputPath = fileinfo.DirectoryName;
  306. char[] enumerationSeparator = new char[] { ',' };
  307. char[] rangeSeparator = new char[] { '-' };
  308. List<int> PageIndexLists = new List<int>();
  309. CPDFDocument document = CPDFDocument.InitWithFilePath(filename);
  310. if (document == null)
  311. {
  312. PDFDataTable.Rows[fileNamesIndex]["FileState"] = "error";
  313. PDFCurrentDataTable.Rows[fileNamesIndex]["FileState"] = "error";
  314. fileNamesIndex++;
  315. continue;
  316. }
  317. if (document.IsLocked)
  318. {
  319. DialogParameters value = new DialogParameters();
  320. value.Add(ParameterNames.PDFDocument, document);
  321. dialogs.ShowDialog(DialogNames.VerifyPassWordDialog, value, e =>
  322. {
  323. if (e.Result == ButtonResult.OK)
  324. {
  325. if (e.Parameters.ContainsKey(ParameterNames.PassWord) && e.Parameters.GetValue<string>(ParameterNames.PassWord) != null)
  326. {
  327. document.UnlockWithPassword(e.Parameters.GetValue<string>(ParameterNames.PassWord).ToString());
  328. }
  329. }
  330. });
  331. if (document.IsLocked)
  332. {
  333. //未成功解密文档时,释放Document对象,返回
  334. PDFDataTable.Rows[fileNamesIndex]["FileState"] = "error";
  335. PDFCurrentDataTable.Rows[fileNamesIndex]["FileState"] = "error";
  336. fileNamesIndex++;
  337. continue;
  338. }
  339. }
  340. CreateBackground(document);
  341. document.WriteToFilePath(CommonHelper.CreateFilePath(filename + "_Background.pdf"));
  342. // if (!CommonHelper.GetPagesInRange(ref PageIndexLists, "1-" + document.PageCount.ToString(), document.PageCount, enumerationSeparator, rangeSeparator))
  343. // { //TODO
  344. // Trace.WriteLine("输入不对");
  345. // MessageBoxEx.Show("输入不对");
  346. // return;
  347. // }
  348. document.Release();
  349. PDFDataTable.Rows[fileNamesIndex]["FileState"] = "complete";
  350. PDFCurrentDataTable.Rows[fileNamesIndex]["FileState"] = "complete";
  351. fileNamesIndex++;
  352. }
  353. BackgroundGridIsEnabled = "True";
  354. HomePageBatchProcessingDialogModel.closeDialog = false;
  355. }
  356. public void CreateBackground(CPDFDocument document)
  357. {
  358. if (BackgroundInfo != null)
  359. {
  360. background = document.GetBackground();
  361. if (BackgroundInfo.BackgroundType == C_Background_Type.BG_TYPE_COLOR)
  362. {
  363. background.SetBackgroundType(C_Background_Type.BG_TYPE_COLOR);
  364. background.SetColor(BackgroundInfo.Color);
  365. }
  366. else
  367. {
  368. background.SetBackgroundType(C_Background_Type.BG_TYPE_IMAGE);
  369. background.SetImage(BackgroundInfo.ImageArray, BackgroundInfo.ImageWidth, BackgroundInfo.ImageHeight, ComPDFKit.Import.C_Scale_Type.fitCenter);
  370. }
  371. if (!BackgroundInfo.IsRelativeScale)
  372. {
  373. background.SetScale(1);
  374. }
  375. else
  376. {
  377. background.SetScale((float)(BackgroundInfo.Scale / 100));
  378. }
  379. background.SetRotation((float)((BackgroundInfo.Rotation / 180) * Math.PI));
  380. background.SetOpacity((byte)(((float)BackgroundInfo.Opacity / 100) * 255));
  381. background.SetVertalign(BackgroundInfo.Vertalign);
  382. background.SetHorizalign(BackgroundInfo.Horizalign);
  383. background.SetXOffset(BackgroundInfo.HorizOffset);
  384. background.SetYOffset(BackgroundInfo.VertOffset);
  385. background.SetAllowsPrint(true);
  386. background.SetAllowsView(true);
  387. background.SetPages(getFilePageRange(document, PDFCurrentDataTable.Rows[fileNamesIndex]["FilePageRangeText"].ToString(), PDFCurrentDataTable.Rows[fileNamesIndex]["FilePageRangeSelectIndex"].ToString()));
  388. background.Update();
  389. }
  390. }
  391. #endregion
  392. #region 批量处理逻辑函数
  393. /// <summary>
  394. /// 添加PDF文件
  395. /// </summary>
  396. private void addpicture()
  397. {
  398. FileNameNumber = fileNames.Count;
  399. System.Windows.Forms.OpenFileDialog dlg = new System.Windows.Forms.OpenFileDialog();
  400. dlg.Multiselect = true;
  401. dlg.Filter = "PDF|*.pdf;*.PDF;";
  402. if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  403. {
  404. fileNames.AddRange(dlg.FileNames.ToList());
  405. RemoveExcess(ref fileNames);
  406. SetBackgroundGridIsEnabled = "True";
  407. AddFileVisibility = Visibility.Collapsed;
  408. updateListview("wait");
  409. }
  410. }
  411. public void addPDFFiles(string filename)
  412. {
  413. FileNameNumber = fileNames.Count;
  414. fileNames.Add(filename);
  415. RemoveExcess(ref fileNames);
  416. SetBackgroundGridIsEnabled = "True";
  417. AddFileVisibility = Visibility.Collapsed;
  418. updateListview("wait");
  419. }
  420. /// <summary>
  421. /// 添加已打开PDF文件
  422. /// </summary>
  423. public void addOpenedPDFFiles()
  424. {
  425. FileNameNumber = fileNames.Count;
  426. foreach (var filename in App.OpenedFileList)
  427. {
  428. fileNames.Add(filename);
  429. }
  430. RemoveExcess(ref fileNames);
  431. SetBackgroundGridIsEnabled = "True";
  432. AddFileVisibility = Visibility.Collapsed;
  433. updateListview("wait");
  434. }
  435. /// <summary>
  436. /// 删除重复的文件
  437. /// </summary>
  438. public void RemoveExcess(ref List<string> Filenames)
  439. {
  440. List<string> filenames = new List<string>();
  441. foreach (var fileName in Filenames)
  442. {
  443. if (!filenames.Contains(fileName))
  444. {
  445. filenames.Add(fileName);
  446. }
  447. }
  448. Filenames.Clear();
  449. Filenames = filenames;
  450. }
  451. /// <summary>
  452. /// 添加PDF文件夹
  453. /// </summary>
  454. private void addpicturefiles()
  455. {
  456. FileNameNumber = fileNames.Count;
  457. FolderBrowserDialog dialog = new FolderBrowserDialog();
  458. dialog.Description = "请选择文件路径";
  459. if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  460. {
  461. string foldPath = dialog.SelectedPath;
  462. var apps = System.IO.Directory.GetFiles(foldPath);
  463. foreach (string app in apps)
  464. {
  465. var fi = new FileInfo(app);
  466. if (fi.Extension == ".pdf" || fi.Extension == ".PDF")
  467. {
  468. fileNames.Add(app);
  469. }
  470. }
  471. RemoveExcess(ref fileNames);
  472. updateListview("wait");
  473. SetBackgroundGridIsEnabled = "True";
  474. AddFileVisibility = Visibility.Collapsed;
  475. }
  476. }
  477. /// <summary>
  478. /// 更新listview显示
  479. /// state 状态显示字符串
  480. /// </summary>
  481. public void updateListview(string state)
  482. {
  483. updateCurrentListview();
  484. DataTable pdfdatatable = new DataTable();
  485. pdfdatatable.Columns.Add("FileName");
  486. pdfdatatable.Columns.Add("FilePageRangeText");
  487. pdfdatatable.Columns.Add("FilePageRangeSelectIndex");
  488. pdfdatatable.Columns.Add("IsEvenPageIsEnabled");
  489. pdfdatatable.Columns.Add("MaxPageRange");
  490. pdfdatatable.Columns.Add("FileSize");
  491. pdfdatatable.Columns.Add("FileState");
  492. int datatableindex = 0;
  493. List<int> PageIndexLists = new List<int>();
  494. foreach (var fileName in fileNames)
  495. {
  496. string file_all = fileName;
  497. FileInfo f = new FileInfo(file_all);
  498. string file_size = (((float)f.Length) / 1024).ToString() + " K";
  499. if (!isEvenPage(fileName) && PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"].ToString() == "2")
  500. {
  501. PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"] = "0";
  502. }
  503. int pagecount = CPDFDocument.InitWithFilePath(fileName).PageCount;
  504. if (PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"].ToString() == "3" && !CommonHelper.GetPagesInRange(ref PageIndexLists, PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeText"].ToString(), pagecount, new char[] { ',' }, new char[] { '-' }, true))
  505. {
  506. PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"] = "0";
  507. }
  508. pdfdatatable.Rows.Add(f.Name, PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeText"], PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"], isEvenPage(fileName), pagecount, file_size, PDFCurrentDataTable.Rows[datatableindex]["FileState"]);
  509. datatableindex++;
  510. }
  511. PDFDataTable = pdfdatatable;
  512. HomePageBatchProcessingDialogModel.FilePaths = fileNames;
  513. }
  514. /// <summary>
  515. /// 更新Currentlistview显示
  516. /// pagerangetext 自定义页面范围字符串 pagerangeselectindex combobox下拉索引(0全部页面 1奇数页 2偶数页 3自定义页面)isevenpageisenabled 偶数页状态 state 状态显示字符串
  517. /// </summary>
  518. public void updateCurrentListview(string pagerangetext = "1", string pagerangeselectindex = "0", bool isevenpageisenabled = true, string state = "wait")
  519. {
  520. if (fileNames.Count >= FileNameNumber)
  521. {
  522. for (int i = 0; fileNames.Count - FileNameNumber > i; i++)
  523. {
  524. PDFCurrentDataTable.Rows.Add(pagerangetext, pagerangeselectindex, isevenpageisenabled, state);
  525. }
  526. }
  527. else
  528. {
  529. Reverseorder(ref fileNamesView);
  530. foreach (int filenamesview in fileNamesView)
  531. {
  532. PDFCurrentDataTable.Rows.RemoveAt(filenamesview);
  533. }
  534. }
  535. }
  536. /// <summary>
  537. /// 更新Currentlistview显示
  538. /// pagerangetext 自定义页面范围字符串 pagerangeselectindex combobox下拉索引(0全部页面 1奇数页 2偶数页 3自定义页面)
  539. /// </summary>
  540. public void updateFilesPageRange(string pagerangetext = "1", string pagerangeselectindex = "0")
  541. {
  542. for (int i = 0; fileNames.Count > i; i++)
  543. {
  544. PDFDataTable.Rows[i]["FilePageRangeText"] = pagerangetext;
  545. PDFDataTable.Rows[i]["FilePageRangeSelectIndex"] = pagerangeselectindex;
  546. PDFCurrentDataTable.Rows[i]["FilePageRangeText"] = pagerangetext;
  547. PDFCurrentDataTable.Rows[i]["FilePageRangeSelectIndex"] = pagerangeselectindex;
  548. }
  549. }
  550. /// <summary>
  551. /// 获取文件列表单个文件对应的页码范围
  552. /// document 文档对象 pagerangetext 自定义页面范围字符串 pagerangeselectindex combobox下拉索引(0全部页面 1奇数页 2偶数页 3自定义页面)
  553. /// </summary>
  554. public string getFilePageRange(CPDFDocument document, string pagerangetext = "1", string pagerangeselectindex = "0")
  555. {
  556. string filePageRange = "1";
  557. EditToolsHelper.GetPageRange(int.Parse(pagerangeselectindex), document, ref filePageRange, pagerangetext);
  558. return filePageRange;
  559. }
  560. /// <summary>
  561. /// 判断是否关闭偶数页
  562. /// document 文档对象 )
  563. /// </summary>
  564. public bool isEvenPage(string filename)
  565. {
  566. CPDFDocument document = CPDFDocument.InitWithFilePath(filename);
  567. bool isevenpage = false;
  568. if (document.PageCount > 1)
  569. {
  570. isevenpage = true;
  571. }
  572. document.Release();
  573. return isevenpage;
  574. }
  575. /// <summary>
  576. /// 逆序int类型集合
  577. /// </summary>
  578. public void Reverseorder(ref List<int> Numbers)
  579. {
  580. Numbers = Numbers.OrderBy(a => a).ToList();
  581. Numbers.Reverse();
  582. }
  583. /// <summary>
  584. /// 打开文件PDF
  585. /// </summary>
  586. public void openfiledialog()
  587. {
  588. foreach (int filenamesview in fileNamesView)
  589. {
  590. System.Diagnostics.Process.Start(fileNames[filenamesview]);
  591. }
  592. }
  593. /// <summary>
  594. /// 删除文件PDF
  595. /// </summary>
  596. public void removepdffile()
  597. {
  598. FileNameNumber = fileNames.Count;
  599. Reverseorder(ref fileNamesView);
  600. foreach (int filenamesview in fileNamesView)
  601. {
  602. //Trace.WriteLine(filenamesview);
  603. fileNames.Remove(fileNames[filenamesview]);
  604. }
  605. if (fileNames.Count < 1)
  606. {
  607. SetBackgroundGridIsEnabled = "False";
  608. AddFileVisibility = Visibility.Visible;
  609. }
  610. updateListview("wait");
  611. }
  612. public void removepdffile(int index)
  613. {
  614. PDFCurrentDataTable.Rows.RemoveAt(index);
  615. fileNames.Remove(fileNames[index]);
  616. if (fileNames.Count < 1)
  617. {
  618. SetBackgroundGridIsEnabled = "False";
  619. AddFileVisibility = Visibility.Visible;
  620. }
  621. updateListview("wait");
  622. }
  623. public void PDFFileCount()
  624. {
  625. if (fileNames.Count == 0)
  626. {
  627. SetBackgroundGridIsEnabled = "False";
  628. AddFileVisibility = Visibility.Visible;
  629. }
  630. else
  631. {
  632. SetBackgroundGridIsEnabled = "True";
  633. AddFileVisibility = Visibility.Collapsed;
  634. }
  635. }
  636. #endregion
  637. #region 构架行为
  638. public void OnNavigatedTo(NavigationContext navigationContext)
  639. {
  640. List<string> filepath = new List<string>();
  641. navigationContext.Parameters.TryGetValue<ViewContentViewModel>(ParameterNames.ViewContentViewModel, out viewContentViewModel);
  642. navigationContext.Parameters.TryGetValue<CPDFViewer>(ParameterNames.PDFViewer, out PDFViewer);
  643. navigationContext.Parameters.TryGetValue<List<string>>(ParameterNames.FilePath, out filepath);
  644. if (filepath != null)
  645. {
  646. fileNames = filepath;
  647. PDFFileCount();
  648. updateListview("wait");
  649. CreateGridSpan = "1";
  650. CreateGridSpanVisibility = Visibility.Visible;
  651. EnterSelectedContent(TemplateListBaseName);
  652. }
  653. }
  654. public bool IsNavigationTarget(NavigationContext navigationContext)
  655. {
  656. return true;
  657. }
  658. public void OnNavigatedFrom(NavigationContext navigationContext)
  659. {
  660. }
  661. #endregion
  662. }
  663. }