HomePageBackgroundDialogViewModel.cs 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715
  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 RemovePDFFileCommand { get; set; }
  191. public DelegateCommand CreateCommand { get; set; }
  192. public DelegateCommand ADDPDFFilesCommand { get; set; }
  193. #endregion
  194. public string Unicode = null;
  195. public HomePageBackgroundDialogViewModel(IRegionManager backgroundRegion, IEventAggregator eventAggregator, IDialogService dialogs)
  196. {
  197. this.eventAggregator = eventAggregator;
  198. this.backgroundRegion = backgroundRegion;
  199. this.dialogs = dialogs;
  200. PDFCurrentDataTable.Columns.Add("FilePageRangeText");
  201. PDFCurrentDataTable.Columns.Add("FilePageRangeSelectIndex");
  202. PDFCurrentDataTable.Columns.Add("IsEvenPageIsEnabled");
  203. PDFCurrentDataTable.Columns.Add("FileState");
  204. PDFDataTable.Columns.Add("FileName");
  205. PDFDataTable.Columns.Add("FilePageRangeText");
  206. PDFDataTable.Columns.Add("FilePageRangeSelectIndex");
  207. PDFDataTable.Columns.Add("IsEvenPageIsEnabled");
  208. PDFDataTable.Columns.Add("MaxPageRange");
  209. PDFDataTable.Columns.Add("FileSize");
  210. PDFDataTable.Columns.Add("FileState");
  211. Unicode = App.mainWindowViewModel.SelectedItem.Unicode;
  212. BackgroundSettingsVisible = Visibility.Visible;
  213. ADDPDFCommand = new DelegateCommand(addpicture);
  214. ADDPDFFilesCommand = new DelegateCommand(addpicturefiles);
  215. RemovePDFFileCommand = new DelegateCommand(removepdffile);
  216. CreateCommand = new DelegateCommand(create);
  217. BackgroundSettingsRegionName = Guid.NewGuid().ToString();
  218. eventAggregator.GetEvent<EnterTemplateListOrCreateEvent>().Subscribe(EnterTemplateListOrCreate, e => e.Unicode == Unicode);
  219. eventAggregator.GetEvent<SetCurrentCreateModEvent>().Subscribe(SetCurrentCreateMod, e => e.Unicode == Unicode);
  220. eventAggregator.GetEvent<SetCurrentTemplateListModEvent>().Subscribe(SetCurrentTemplateListMod, e => e.Unicode == Unicode);
  221. eventAggregator.GetEvent<EditBackgroundTemplateItemEvent>().Subscribe(EditBackgroundTemplateItem, e => e.Unicode == Unicode);
  222. }
  223. #region 逻辑函数
  224. public void EnterTemplateListOrCreate(EnumTemplateListOrCreateUnicode enumTemplateListOrCreateunicode)
  225. {
  226. EnumTemplateListOrCreate enumTemplateListOrCreate = enumTemplateListOrCreateunicode.Status;
  227. if (enumTemplateListOrCreate == EnumTemplateListOrCreate.StatusTemplate)
  228. {
  229. CreateGridSpan = "1";
  230. CreateGridSpanVisibility = Visibility.Visible;
  231. EnterSelectedContent(TemplateListBaseName);
  232. }
  233. else
  234. {
  235. CreateGridSpan = "2";
  236. CreateGridSpanVisibility = Visibility.Collapsed;
  237. EnterSelectedContent(CreateBaseName);
  238. }
  239. }
  240. public void EnterSelectedContent(string SelectedContentName)
  241. {
  242. NavigationParameters param = new NavigationParameters();
  243. param.Add(ParameterNames.PDFViewer, PDFViewer);
  244. param.Add("ViewModel", this);
  245. if (SelectedContentName == TemplateListBaseName)
  246. {
  247. param.Add("CurrentCreateModName", CurrentCreateMod);
  248. }
  249. else if (SelectedContentName == CreateBaseName)
  250. {
  251. param.Add("CurrentTemplateListModName", CurrentTemplateListMod);
  252. }
  253. backgroundRegion.RequestNavigate(BackgroundSettingsRegionName, SelectedContentName, param);
  254. BackgroundSettingsVisible = Visibility.Visible;
  255. }
  256. public void SetCurrentCreateMod(stringUnicode currentCreateModNameunicode)
  257. {
  258. string currentCreateModName = currentCreateModNameunicode.Status;
  259. if (currentCreateModName == CreateModColorName)
  260. {
  261. CurrentCreateMod = EnumColorOrFile.StatusColor;
  262. }
  263. else if (currentCreateModName == CreateModFileName)
  264. {
  265. CurrentCreateMod = EnumColorOrFile.StatusFile;
  266. }
  267. }
  268. public void SetCurrentTemplateListMod(stringUnicode currentTemplateListModNameunicode)
  269. {
  270. string currentTemplateListModName = currentTemplateListModNameunicode.Status;
  271. if (currentTemplateListModName == TemplateListModColorName)
  272. {
  273. CurrentTemplateListMod = EnumColorOrFile.StatusColor;
  274. }
  275. else if (currentTemplateListModName == TemplateListModFileName)
  276. {
  277. CurrentTemplateListMod = EnumColorOrFile.StatusFile;
  278. }
  279. }
  280. public void EditBackgroundTemplateItem(BackgroundItemUnicode backgroundItemunicode)
  281. {
  282. BackgroundItem backgroundItem = backgroundItemunicode.Status;
  283. NavigationParameters param = new NavigationParameters();
  284. param.Add(ParameterNames.PDFViewer, PDFViewer);
  285. param.Add("CurrentTemplateListModName", CurrentTemplateListMod);
  286. param.Add("BackgroundItem", backgroundItem);
  287. backgroundRegion.RequestNavigate(BackgroundSettingsRegionName, CreateBaseName, param);
  288. BackgroundSettingsVisible = Visibility.Visible;
  289. CreateGridSpan = "2";
  290. CreateGridSpanVisibility = Visibility.Collapsed;
  291. }
  292. private void create()
  293. {
  294. updateListview("待确定");
  295. fileNamesIndex = 0;
  296. BackgroundGridIsEnabled = "False";
  297. foreach (var filename in fileNames)
  298. {
  299. FileInfo fileinfo = new FileInfo(filename);
  300. string OutputPath = fileinfo.DirectoryName;
  301. char[] enumerationSeparator = new char[] { ',' };
  302. char[] rangeSeparator = new char[] { '-' };
  303. List<int> PageIndexLists = new List<int>();
  304. CPDFDocument document = CPDFDocument.InitWithFilePath(filename);
  305. if (document == null)
  306. {
  307. PDFDataTable.Rows[fileNamesIndex]["FileState"] = "文件出错";
  308. PDFCurrentDataTable.Rows[fileNamesIndex]["FileState"] = "文件出错";
  309. fileNamesIndex++;
  310. continue;
  311. }
  312. if (document.IsLocked)
  313. {
  314. DialogParameters value = new DialogParameters();
  315. value.Add(ParameterNames.PDFDocument, document);
  316. dialogs.ShowDialog(DialogNames.VerifyPassWordDialog, value, e =>
  317. {
  318. if (e.Result == ButtonResult.OK)
  319. {
  320. if (e.Parameters.ContainsKey(ParameterNames.PassWord) && e.Parameters.GetValue<string>(ParameterNames.PassWord) != null)
  321. {
  322. document.UnlockWithPassword(e.Parameters.GetValue<string>(ParameterNames.PassWord).ToString());
  323. }
  324. }
  325. });
  326. if (document.IsLocked)
  327. {
  328. //未成功解密文档时,释放Document对象,返回
  329. PDFDataTable.Rows[fileNamesIndex]["FileState"] = "文件出错";
  330. PDFCurrentDataTable.Rows[fileNamesIndex]["FileState"] = "文件出错";
  331. fileNamesIndex++;
  332. continue;
  333. }
  334. }
  335. CreateBackground(document);
  336. document.WriteToFilePath(CommonHelper.CreateFilePath(filename + "_Background.pdf"));
  337. // if (!CommonHelper.GetPagesInRange(ref PageIndexLists, "1-" + document.PageCount.ToString(), document.PageCount, enumerationSeparator, rangeSeparator))
  338. // { //TODO
  339. // Trace.WriteLine("输入不对");
  340. // MessageBoxEx.Show("输入不对");
  341. // return;
  342. // }
  343. document.Release();
  344. PDFDataTable.Rows[fileNamesIndex]["FileState"] = "完成";
  345. PDFCurrentDataTable.Rows[fileNamesIndex]["FileState"] = "完成";
  346. fileNamesIndex++;
  347. }
  348. BackgroundGridIsEnabled = "True";
  349. }
  350. public void CreateBackground(CPDFDocument document)
  351. {
  352. if (BackgroundInfo != null)
  353. {
  354. background = document.GetBackground();
  355. if (BackgroundInfo.BackgroundType == C_Background_Type.BG_TYPE_COLOR)
  356. {
  357. background.SetBackgroundType(C_Background_Type.BG_TYPE_COLOR);
  358. background.SetColor(BackgroundInfo.Color);
  359. }
  360. else
  361. {
  362. background.SetBackgroundType(C_Background_Type.BG_TYPE_IMAGE);
  363. background.SetImage(BackgroundInfo.ImageArray, BackgroundInfo.ImageWidth, BackgroundInfo.ImageHeight, ComPDFKit.Import.C_Scale_Type.fitCenter);
  364. }
  365. if (!BackgroundInfo.IsRelativeScale)
  366. {
  367. background.SetScale(1);
  368. }
  369. else
  370. {
  371. background.SetScale((float)(BackgroundInfo.Scale / 100));
  372. }
  373. background.SetRotation((float)((BackgroundInfo.Rotation / 180) * Math.PI));
  374. background.SetOpacity((byte)(((float)BackgroundInfo.Opacity / 100) * 255));
  375. background.SetVertalign(BackgroundInfo.Vertalign);
  376. background.SetHorizalign(BackgroundInfo.Horizalign);
  377. background.SetXOffset(BackgroundInfo.HorizOffset);
  378. background.SetYOffset(BackgroundInfo.VertOffset);
  379. background.SetAllowsPrint(true);
  380. background.SetAllowsView(true);
  381. background.SetPages(getFilePageRange(document, PDFCurrentDataTable.Rows[fileNamesIndex]["FilePageRangeText"].ToString(), PDFCurrentDataTable.Rows[fileNamesIndex]["FilePageRangeSelectIndex"].ToString()));
  382. background.Update();
  383. }
  384. }
  385. #endregion
  386. #region 批量处理逻辑函数
  387. /// <summary>
  388. /// 添加PDF文件
  389. /// </summary>
  390. private void addpicture()
  391. {
  392. FileNameNumber = fileNames.Count;
  393. System.Windows.Forms.OpenFileDialog dlg = new System.Windows.Forms.OpenFileDialog();
  394. dlg.Multiselect = true;
  395. dlg.Filter = "PDF|*.pdf;*.PDF;";
  396. if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  397. {
  398. fileNames.AddRange(dlg.FileNames.ToList());
  399. RemoveExcess(ref fileNames);
  400. SetBackgroundGridIsEnabled = "True";
  401. AddFileVisibility = Visibility.Collapsed;
  402. updateListview("待确定");
  403. }
  404. }
  405. public void addPDFFiles(string filename)
  406. {
  407. FileNameNumber = fileNames.Count;
  408. fileNames.Add(filename);
  409. RemoveExcess(ref fileNames);
  410. SetBackgroundGridIsEnabled = "True";
  411. AddFileVisibility = Visibility.Collapsed;
  412. updateListview("待确定");
  413. }
  414. /// <summary>
  415. /// 删除重复的文件
  416. /// </summary>
  417. public void RemoveExcess(ref List<string> Filenames)
  418. {
  419. List<string> filenames = new List<string>();
  420. foreach (var fileName in Filenames)
  421. {
  422. if (!filenames.Contains(fileName))
  423. {
  424. filenames.Add(fileName);
  425. }
  426. }
  427. Filenames.Clear();
  428. Filenames = filenames;
  429. }
  430. /// <summary>
  431. /// 添加PDF文件夹
  432. /// </summary>
  433. private void addpicturefiles()
  434. {
  435. FileNameNumber = fileNames.Count;
  436. FolderBrowserDialog dialog = new FolderBrowserDialog();
  437. dialog.Description = "请选择文件路径";
  438. if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
  439. {
  440. string foldPath = dialog.SelectedPath;
  441. var apps = System.IO.Directory.GetFiles(foldPath);
  442. foreach (string app in apps)
  443. {
  444. var fi = new FileInfo(app);
  445. if (fi.Extension == ".pdf" || fi.Extension == ".PDF")
  446. {
  447. fileNames.Add(app);
  448. }
  449. }
  450. RemoveExcess(ref fileNames);
  451. updateListview("待确定");
  452. SetBackgroundGridIsEnabled = "True";
  453. AddFileVisibility = Visibility.Collapsed;
  454. }
  455. }
  456. /// <summary>
  457. /// 更新listview显示
  458. /// state 状态显示字符串
  459. /// </summary>
  460. public void updateListview(string state)
  461. {
  462. updateCurrentListview();
  463. DataTable pdfdatatable = new DataTable();
  464. pdfdatatable.Columns.Add("FileName");
  465. pdfdatatable.Columns.Add("FilePageRangeText");
  466. pdfdatatable.Columns.Add("FilePageRangeSelectIndex");
  467. pdfdatatable.Columns.Add("IsEvenPageIsEnabled");
  468. pdfdatatable.Columns.Add("MaxPageRange");
  469. pdfdatatable.Columns.Add("FileSize");
  470. pdfdatatable.Columns.Add("FileState");
  471. int datatableindex = 0;
  472. List<int> PageIndexLists = new List<int>();
  473. foreach (var fileName in fileNames)
  474. {
  475. string file_all = fileName;
  476. FileInfo f = new FileInfo(file_all);
  477. string file_size = (((float)f.Length) / 1024).ToString() + " K";
  478. if (!isEvenPage(fileName) && PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"].ToString() == "2")
  479. {
  480. PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"] = "0";
  481. }
  482. int pagecount = CPDFDocument.InitWithFilePath(fileName).PageCount;
  483. if (PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"].ToString() == "3" && !CommonHelper.GetPagesInRange(ref PageIndexLists, PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeText"].ToString(), pagecount, new char[] { ',' }, new char[] { '-' }, true))
  484. {
  485. PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"] = "0";
  486. }
  487. pdfdatatable.Rows.Add(f.Name, PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeText"], PDFCurrentDataTable.Rows[datatableindex]["FilePageRangeSelectIndex"], isEvenPage(fileName), pagecount, file_size, PDFCurrentDataTable.Rows[datatableindex]["FileState"]);
  488. datatableindex++;
  489. }
  490. PDFDataTable = pdfdatatable;
  491. HomePageBatchProcessingDialogModel.FilePaths = fileNames;
  492. }
  493. /// <summary>
  494. /// 更新Currentlistview显示
  495. /// pagerangetext 自定义页面范围字符串 pagerangeselectindex combobox下拉索引(0全部页面 1奇数页 2偶数页 3自定义页面)isevenpageisenabled 偶数页状态 state 状态显示字符串
  496. /// </summary>
  497. public void updateCurrentListview(string pagerangetext = "1", string pagerangeselectindex = "0",bool isevenpageisenabled=true,string state = "待完成")
  498. {
  499. if (fileNames.Count >= FileNameNumber)
  500. {
  501. for (int i = 0; fileNames.Count - FileNameNumber > i; i++)
  502. {
  503. PDFCurrentDataTable.Rows.Add(pagerangetext, pagerangeselectindex, isevenpageisenabled, state);
  504. }
  505. }
  506. else
  507. {
  508. Reverseorder(ref fileNamesView);
  509. foreach (int filenamesview in fileNamesView)
  510. {
  511. PDFCurrentDataTable.Rows.RemoveAt(filenamesview);
  512. }
  513. }
  514. }
  515. /// <summary>
  516. /// 更新Currentlistview显示
  517. /// pagerangetext 自定义页面范围字符串 pagerangeselectindex combobox下拉索引(0全部页面 1奇数页 2偶数页 3自定义页面)
  518. /// </summary>
  519. public void updateFilesPageRange(string pagerangetext = "1", string pagerangeselectindex = "0")
  520. {
  521. for (int i = 0; fileNames.Count > i; i++)
  522. {
  523. PDFDataTable.Rows[i]["FilePageRangeText"] = pagerangetext;
  524. PDFDataTable.Rows[i]["FilePageRangeSelectIndex"] = pagerangeselectindex;
  525. PDFCurrentDataTable.Rows[i]["FilePageRangeText"] = pagerangetext;
  526. PDFCurrentDataTable.Rows[i]["FilePageRangeSelectIndex"] = pagerangeselectindex;
  527. }
  528. }
  529. /// <summary>
  530. /// 获取文件列表单个文件对应的页码范围
  531. /// document 文档对象 pagerangetext 自定义页面范围字符串 pagerangeselectindex combobox下拉索引(0全部页面 1奇数页 2偶数页 3自定义页面)
  532. /// </summary>
  533. public string getFilePageRange(CPDFDocument document, string pagerangetext = "1", string pagerangeselectindex = "0")
  534. {
  535. string filePageRange = "1";
  536. EditToolsHelper.GetPageRange(int.Parse(pagerangeselectindex), document, ref filePageRange, pagerangetext);
  537. return filePageRange;
  538. }
  539. /// <summary>
  540. /// 判断是否关闭偶数页
  541. /// document 文档对象 )
  542. /// </summary>
  543. public bool isEvenPage(string filename)
  544. {
  545. CPDFDocument document= CPDFDocument.InitWithFilePath(filename);
  546. bool isevenpage = false;
  547. if (document.PageCount > 1)
  548. {
  549. isevenpage = true;
  550. }
  551. document.Release();
  552. return isevenpage;
  553. }
  554. /// <summary>
  555. /// 逆序int类型集合
  556. /// </summary>
  557. public void Reverseorder(ref List<int> Numbers)
  558. {
  559. Numbers = Numbers.OrderBy(a => a).ToList();
  560. Numbers.Reverse();
  561. }
  562. /// <summary>
  563. /// 打开文件PDF
  564. /// </summary>
  565. public void openfiledialog()
  566. {
  567. foreach (int filenamesview in fileNamesView)
  568. {
  569. System.Diagnostics.Process.Start(fileNames[filenamesview]);
  570. }
  571. }
  572. /// <summary>
  573. /// 删除文件PDF
  574. /// </summary>
  575. public void removepdffile()
  576. {
  577. FileNameNumber = fileNames.Count;
  578. Reverseorder(ref fileNamesView);
  579. foreach (int filenamesview in fileNamesView)
  580. {
  581. //Trace.WriteLine(filenamesview);
  582. fileNames.Remove(fileNames[filenamesview]);
  583. }
  584. if (fileNames.Count < 1)
  585. {
  586. SetBackgroundGridIsEnabled = "False";
  587. AddFileVisibility = Visibility.Visible;
  588. }
  589. updateListview("待确定");
  590. }
  591. public void removepdffile(int index)
  592. {
  593. PDFCurrentDataTable.Rows.RemoveAt(index);
  594. fileNames.Remove(fileNames[index]);
  595. if (fileNames.Count < 1)
  596. {
  597. SetBackgroundGridIsEnabled = "False";
  598. AddFileVisibility = Visibility.Visible;
  599. }
  600. updateListview("待确定");
  601. }
  602. public void PDFFileCount()
  603. {
  604. if (fileNames.Count == 0)
  605. {
  606. SetBackgroundGridIsEnabled = "False";
  607. AddFileVisibility = Visibility.Visible;
  608. }
  609. else
  610. {
  611. SetBackgroundGridIsEnabled = "True";
  612. AddFileVisibility = Visibility.Collapsed;
  613. }
  614. }
  615. #endregion
  616. #region 构架行为
  617. public void OnNavigatedTo(NavigationContext navigationContext)
  618. {
  619. List<string> filepath = new List<string>();
  620. navigationContext.Parameters.TryGetValue<ViewContentViewModel>(ParameterNames.ViewContentViewModel, out viewContentViewModel);
  621. navigationContext.Parameters.TryGetValue<CPDFViewer>(ParameterNames.PDFViewer, out PDFViewer);
  622. navigationContext.Parameters.TryGetValue<List<string>>(ParameterNames.FilePath, out filepath);
  623. if (filepath != null)
  624. {
  625. fileNames = filepath;
  626. PDFFileCount();
  627. updateListview("待确定");
  628. CreateGridSpan = "1";
  629. CreateGridSpanVisibility = Visibility.Visible;
  630. EnterSelectedContent(TemplateListBaseName);
  631. }
  632. }
  633. public bool IsNavigationTarget(NavigationContext navigationContext)
  634. {
  635. return true;
  636. }
  637. public void OnNavigatedFrom(NavigationContext navigationContext)
  638. {
  639. }
  640. #endregion
  641. }
  642. }