HomePageBackgroundDialogViewModel.cs 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736
  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. updateListview("wait");
  299. fileNamesIndex = 0;
  300. BackgroundGridIsEnabled = "False";
  301. foreach (var filename in fileNames)
  302. {
  303. FileInfo fileinfo = new FileInfo(filename);
  304. string OutputPath = fileinfo.DirectoryName;
  305. char[] enumerationSeparator = new char[] { ',' };
  306. char[] rangeSeparator = new char[] { '-' };
  307. List<int> PageIndexLists = new List<int>();
  308. CPDFDocument document = CPDFDocument.InitWithFilePath(filename);
  309. if (document == null)
  310. {
  311. PDFDataTable.Rows[fileNamesIndex]["FileState"] = "error";
  312. PDFCurrentDataTable.Rows[fileNamesIndex]["FileState"] = "error";
  313. fileNamesIndex++;
  314. continue;
  315. }
  316. if (document.IsLocked)
  317. {
  318. DialogParameters value = new DialogParameters();
  319. value.Add(ParameterNames.PDFDocument, document);
  320. dialogs.ShowDialog(DialogNames.VerifyPassWordDialog, value, e =>
  321. {
  322. if (e.Result == ButtonResult.OK)
  323. {
  324. if (e.Parameters.ContainsKey(ParameterNames.PassWord) && e.Parameters.GetValue<string>(ParameterNames.PassWord) != null)
  325. {
  326. document.UnlockWithPassword(e.Parameters.GetValue<string>(ParameterNames.PassWord).ToString());
  327. }
  328. }
  329. });
  330. if (document.IsLocked)
  331. {
  332. //未成功解密文档时,释放Document对象,返回
  333. PDFDataTable.Rows[fileNamesIndex]["FileState"] = "error";
  334. PDFCurrentDataTable.Rows[fileNamesIndex]["FileState"] = "error";
  335. fileNamesIndex++;
  336. continue;
  337. }
  338. }
  339. CreateBackground(document);
  340. document.WriteToFilePath(CommonHelper.CreateFilePath(filename + "_Background.pdf"));
  341. // if (!CommonHelper.GetPagesInRange(ref PageIndexLists, "1-" + document.PageCount.ToString(), document.PageCount, enumerationSeparator, rangeSeparator))
  342. // { //TODO
  343. // Trace.WriteLine("输入不对");
  344. // MessageBoxEx.Show("输入不对");
  345. // return;
  346. // }
  347. document.Release();
  348. PDFDataTable.Rows[fileNamesIndex]["FileState"] = "complete";
  349. PDFCurrentDataTable.Rows[fileNamesIndex]["FileState"] = "complete";
  350. fileNamesIndex++;
  351. }
  352. BackgroundGridIsEnabled = "True";
  353. }
  354. public void CreateBackground(CPDFDocument document)
  355. {
  356. if (BackgroundInfo != null)
  357. {
  358. background = document.GetBackground();
  359. if (BackgroundInfo.BackgroundType == C_Background_Type.BG_TYPE_COLOR)
  360. {
  361. background.SetBackgroundType(C_Background_Type.BG_TYPE_COLOR);
  362. background.SetColor(BackgroundInfo.Color);
  363. }
  364. else
  365. {
  366. background.SetBackgroundType(C_Background_Type.BG_TYPE_IMAGE);
  367. background.SetImage(BackgroundInfo.ImageArray, BackgroundInfo.ImageWidth, BackgroundInfo.ImageHeight, ComPDFKit.Import.C_Scale_Type.fitCenter);
  368. }
  369. if (!BackgroundInfo.IsRelativeScale)
  370. {
  371. background.SetScale(1);
  372. }
  373. else
  374. {
  375. background.SetScale((float)(BackgroundInfo.Scale / 100));
  376. }
  377. background.SetRotation((float)((BackgroundInfo.Rotation / 180) * Math.PI));
  378. background.SetOpacity((byte)(((float)BackgroundInfo.Opacity / 100) * 255));
  379. background.SetVertalign(BackgroundInfo.Vertalign);
  380. background.SetHorizalign(BackgroundInfo.Horizalign);
  381. background.SetXOffset(BackgroundInfo.HorizOffset);
  382. background.SetYOffset(BackgroundInfo.VertOffset);
  383. background.SetAllowsPrint(true);
  384. background.SetAllowsView(true);
  385. background.SetPages(getFilePageRange(document, PDFCurrentDataTable.Rows[fileNamesIndex]["FilePageRangeText"].ToString(), PDFCurrentDataTable.Rows[fileNamesIndex]["FilePageRangeSelectIndex"].ToString()));
  386. background.Update();
  387. }
  388. }
  389. #endregion
  390. #region 批量处理逻辑函数
  391. /// <summary>
  392. /// 添加PDF文件
  393. /// </summary>
  394. private void addpicture()
  395. {
  396. FileNameNumber = fileNames.Count;
  397. System.Windows.Forms.OpenFileDialog dlg = new System.Windows.Forms.OpenFileDialog();
  398. dlg.Multiselect = true;
  399. dlg.Filter = "PDF|*.pdf;*.PDF;";
  400. if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  401. {
  402. fileNames.AddRange(dlg.FileNames.ToList());
  403. RemoveExcess(ref fileNames);
  404. SetBackgroundGridIsEnabled = "True";
  405. AddFileVisibility = Visibility.Collapsed;
  406. updateListview("wait");
  407. }
  408. }
  409. public void addPDFFiles(string filename)
  410. {
  411. FileNameNumber = fileNames.Count;
  412. fileNames.Add(filename);
  413. RemoveExcess(ref fileNames);
  414. SetBackgroundGridIsEnabled = "True";
  415. AddFileVisibility = Visibility.Collapsed;
  416. updateListview("wait");
  417. }
  418. /// <summary>
  419. /// 添加已打开PDF文件
  420. /// </summary>
  421. public void addOpenedPDFFiles()
  422. {
  423. FileNameNumber = fileNames.Count;
  424. foreach (var filename in App.OpenedFileList)
  425. {
  426. fileNames.Add(filename);
  427. }
  428. RemoveExcess(ref fileNames);
  429. SetBackgroundGridIsEnabled = "True";
  430. AddFileVisibility = Visibility.Collapsed;
  431. updateListview("wait");
  432. }
  433. /// <summary>
  434. /// 删除重复的文件
  435. /// </summary>
  436. public void RemoveExcess(ref List<string> Filenames)
  437. {
  438. List<string> filenames = new List<string>();
  439. foreach (var fileName in Filenames)
  440. {
  441. if (!filenames.Contains(fileName))
  442. {
  443. filenames.Add(fileName);
  444. }
  445. }
  446. Filenames.Clear();
  447. Filenames = filenames;
  448. }
  449. /// <summary>
  450. /// 添加PDF文件夹
  451. /// </summary>
  452. private void addpicturefiles()
  453. {
  454. FileNameNumber = fileNames.Count;
  455. FolderBrowserDialog dialog = new FolderBrowserDialog();
  456. dialog.Description = "请选择文件路径";
  457. if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  458. {
  459. string foldPath = dialog.SelectedPath;
  460. var apps = System.IO.Directory.GetFiles(foldPath);
  461. foreach (string app in apps)
  462. {
  463. var fi = new FileInfo(app);
  464. if (fi.Extension == ".pdf" || fi.Extension == ".PDF")
  465. {
  466. fileNames.Add(app);
  467. }
  468. }
  469. RemoveExcess(ref fileNames);
  470. updateListview("wait");
  471. SetBackgroundGridIsEnabled = "True";
  472. AddFileVisibility = Visibility.Collapsed;
  473. }
  474. }
  475. /// <summary>
  476. /// 更新listview显示
  477. /// state 状态显示字符串
  478. /// </summary>
  479. public void updateListview(string state)
  480. {
  481. updateCurrentListview();
  482. DataTable pdfdatatable = new DataTable();
  483. pdfdatatable.Columns.Add("FileName");
  484. pdfdatatable.Columns.Add("FilePageRangeText");
  485. pdfdatatable.Columns.Add("FilePageRangeSelectIndex");
  486. pdfdatatable.Columns.Add("IsEvenPageIsEnabled");
  487. pdfdatatable.Columns.Add("MaxPageRange");
  488. pdfdatatable.Columns.Add("FileSize");
  489. pdfdatatable.Columns.Add("FileState");
  490. int datatableindex = 0;
  491. List<int> PageIndexLists = new List<int>();
  492. foreach (var fileName in fileNames)
  493. {
  494. string file_all = fileName;
  495. FileInfo f = new FileInfo(file_all);
  496. string file_size = (((float)f.Length) / 1024).ToString() + " K";
  497. if (!isEvenPage(fileName) && PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"].ToString() == "2")
  498. {
  499. PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"] = "0";
  500. }
  501. int pagecount = CPDFDocument.InitWithFilePath(fileName).PageCount;
  502. if (PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"].ToString() == "3" && !CommonHelper.GetPagesInRange(ref PageIndexLists, PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeText"].ToString(), pagecount, new char[] { ',' }, new char[] { '-' }, true))
  503. {
  504. PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"] = "0";
  505. }
  506. pdfdatatable.Rows.Add(f.Name, PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeText"], PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"], isEvenPage(fileName), pagecount, file_size, PDFCurrentDataTable.Rows[datatableindex]["FileState"]);
  507. datatableindex++;
  508. }
  509. PDFDataTable = pdfdatatable;
  510. HomePageBatchProcessingDialogModel.FilePaths = fileNames;
  511. }
  512. /// <summary>
  513. /// 更新Currentlistview显示
  514. /// pagerangetext 自定义页面范围字符串 pagerangeselectindex combobox下拉索引(0全部页面 1奇数页 2偶数页 3自定义页面)isevenpageisenabled 偶数页状态 state 状态显示字符串
  515. /// </summary>
  516. public void updateCurrentListview(string pagerangetext = "1", string pagerangeselectindex = "0",bool isevenpageisenabled=true,string state = "wait")
  517. {
  518. if (fileNames.Count >= FileNameNumber)
  519. {
  520. for (int i = 0; fileNames.Count - FileNameNumber > i; i++)
  521. {
  522. PDFCurrentDataTable.Rows.Add(pagerangetext, pagerangeselectindex, isevenpageisenabled, state);
  523. }
  524. }
  525. else
  526. {
  527. Reverseorder(ref fileNamesView);
  528. foreach (int filenamesview in fileNamesView)
  529. {
  530. PDFCurrentDataTable.Rows.RemoveAt(filenamesview);
  531. }
  532. }
  533. }
  534. /// <summary>
  535. /// 更新Currentlistview显示
  536. /// pagerangetext 自定义页面范围字符串 pagerangeselectindex combobox下拉索引(0全部页面 1奇数页 2偶数页 3自定义页面)
  537. /// </summary>
  538. public void updateFilesPageRange(string pagerangetext = "1", string pagerangeselectindex = "0")
  539. {
  540. for (int i = 0; fileNames.Count > i; i++)
  541. {
  542. PDFDataTable.Rows[i]["FilePageRangeText"] = pagerangetext;
  543. PDFDataTable.Rows[i]["FilePageRangeSelectIndex"] = pagerangeselectindex;
  544. PDFCurrentDataTable.Rows[i]["FilePageRangeText"] = pagerangetext;
  545. PDFCurrentDataTable.Rows[i]["FilePageRangeSelectIndex"] = pagerangeselectindex;
  546. }
  547. }
  548. /// <summary>
  549. /// 获取文件列表单个文件对应的页码范围
  550. /// document 文档对象 pagerangetext 自定义页面范围字符串 pagerangeselectindex combobox下拉索引(0全部页面 1奇数页 2偶数页 3自定义页面)
  551. /// </summary>
  552. public string getFilePageRange(CPDFDocument document, string pagerangetext = "1", string pagerangeselectindex = "0")
  553. {
  554. string filePageRange = "1";
  555. EditToolsHelper.GetPageRange(int.Parse(pagerangeselectindex), document, ref filePageRange, pagerangetext);
  556. return filePageRange;
  557. }
  558. /// <summary>
  559. /// 判断是否关闭偶数页
  560. /// document 文档对象 )
  561. /// </summary>
  562. public bool isEvenPage(string filename)
  563. {
  564. CPDFDocument document= CPDFDocument.InitWithFilePath(filename);
  565. bool isevenpage = false;
  566. if (document.PageCount > 1)
  567. {
  568. isevenpage = true;
  569. }
  570. document.Release();
  571. return isevenpage;
  572. }
  573. /// <summary>
  574. /// 逆序int类型集合
  575. /// </summary>
  576. public void Reverseorder(ref List<int> Numbers)
  577. {
  578. Numbers = Numbers.OrderBy(a => a).ToList();
  579. Numbers.Reverse();
  580. }
  581. /// <summary>
  582. /// 打开文件PDF
  583. /// </summary>
  584. public void openfiledialog()
  585. {
  586. foreach (int filenamesview in fileNamesView)
  587. {
  588. System.Diagnostics.Process.Start(fileNames[filenamesview]);
  589. }
  590. }
  591. /// <summary>
  592. /// 删除文件PDF
  593. /// </summary>
  594. public void removepdffile()
  595. {
  596. FileNameNumber = fileNames.Count;
  597. Reverseorder(ref fileNamesView);
  598. foreach (int filenamesview in fileNamesView)
  599. {
  600. //Trace.WriteLine(filenamesview);
  601. fileNames.Remove(fileNames[filenamesview]);
  602. }
  603. if (fileNames.Count < 1)
  604. {
  605. SetBackgroundGridIsEnabled = "False";
  606. AddFileVisibility = Visibility.Visible;
  607. }
  608. updateListview("wait");
  609. }
  610. public void removepdffile(int index)
  611. {
  612. PDFCurrentDataTable.Rows.RemoveAt(index);
  613. fileNames.Remove(fileNames[index]);
  614. if (fileNames.Count < 1)
  615. {
  616. SetBackgroundGridIsEnabled = "False";
  617. AddFileVisibility = Visibility.Visible;
  618. }
  619. updateListview("wait");
  620. }
  621. public void PDFFileCount()
  622. {
  623. if (fileNames.Count == 0)
  624. {
  625. SetBackgroundGridIsEnabled = "False";
  626. AddFileVisibility = Visibility.Visible;
  627. }
  628. else
  629. {
  630. SetBackgroundGridIsEnabled = "True";
  631. AddFileVisibility = Visibility.Collapsed;
  632. }
  633. }
  634. #endregion
  635. #region 构架行为
  636. public void OnNavigatedTo(NavigationContext navigationContext)
  637. {
  638. List<string> filepath = new List<string>();
  639. navigationContext.Parameters.TryGetValue<ViewContentViewModel>(ParameterNames.ViewContentViewModel, out viewContentViewModel);
  640. navigationContext.Parameters.TryGetValue<CPDFViewer>(ParameterNames.PDFViewer, out PDFViewer);
  641. navigationContext.Parameters.TryGetValue<List<string>>(ParameterNames.FilePath, out filepath);
  642. if (filepath != null)
  643. {
  644. fileNames = filepath;
  645. PDFFileCount();
  646. updateListview("wait");
  647. CreateGridSpan = "1";
  648. CreateGridSpanVisibility = Visibility.Visible;
  649. EnterSelectedContent(TemplateListBaseName);
  650. }
  651. }
  652. public bool IsNavigationTarget(NavigationContext navigationContext)
  653. {
  654. return true;
  655. }
  656. public void OnNavigatedFrom(NavigationContext navigationContext)
  657. {
  658. }
  659. #endregion
  660. }
  661. }