PageEditContent.xaml.cs 64 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571
  1. using ComPDFKit.PDFDocument;
  2. using ComPDFKitViewer;
  3. using ComPDFKitViewer.PdfViewer;
  4. using Dropbox.Api.Team;
  5. using ImTools;
  6. using PDF_Master.EventAggregators;
  7. using PDF_Master.Helper;
  8. using PDF_Master.Model.PageEdit;
  9. using PDF_Master.ViewModels.PageEdit;
  10. using Prism.Events;
  11. using System;
  12. using System.Collections.Generic;
  13. using System.Diagnostics;
  14. using System.IO;
  15. using System.Linq;
  16. using System.Runtime.InteropServices;
  17. using System.Security;
  18. using System.Text;
  19. using System.Text.RegularExpressions;
  20. using System.Threading.Tasks;
  21. using System.Windows;
  22. using System.Windows.Controls;
  23. using System.Windows.Controls.Primitives;
  24. using System.Windows.Data;
  25. using System.Windows.Documents;
  26. using System.Windows.Input;
  27. using System.Windows.Interop;
  28. using System.Windows.Media;
  29. using System.Windows.Media.Imaging;
  30. using System.Windows.Navigation;
  31. using System.Windows.Shapes;
  32. using System.Windows.Threading;
  33. using WpfToolkit.Controls;
  34. using static Dropbox.Api.TeamLog.AdminAlertSeverityEnum;
  35. namespace PDF_Master.Views.PageEdit
  36. {
  37. /// <summary>
  38. /// PageEditContent.xaml 的交互逻辑
  39. /// </summary>
  40. public partial class PageEditContent : UserControl
  41. {
  42. /// <summary>
  43. /// 用于通知刷新图片的事件
  44. /// 因为目前的图片刷新策略依赖很多UI事件判断,因为将主要判断逻辑放在UI层,VM负责图片刷新,非必要情况尽量不要采用这种形式
  45. /// </summary>
  46. private IEventAggregator eventor;
  47. /// <summary>
  48. /// 暂存的唯一索引值,用于区分多页签
  49. /// </summary>
  50. private string unicode;
  51. /// <summary>
  52. /// 是否是加载时第一次触发滚动
  53. /// </summary>
  54. private bool isFirstScrollChange = true;
  55. /// <summary>
  56. /// 用于判断滚轮停止的计时器
  57. /// </summary>
  58. private DispatcherTimer timer = new DispatcherTimer();
  59. /// <summary>
  60. /// 判断是否开始框选
  61. /// </summary>
  62. private bool startChoose = false;
  63. /// <summary>
  64. /// 框选的起始位置
  65. /// </summary>
  66. private Point starPosition = new Point();
  67. /// <summary>
  68. /// 记录当前滑块的状态
  69. /// </summary>
  70. private ScrollEventType scrolltype = ScrollEventType.EndScroll;
  71. //鼠标点击时在item中的位置 实现类似点哪拖哪的细节
  72. private double item_x;
  73. private double item_y;
  74. //插入标记代表的插入位置
  75. private int InsertIndex = -1;
  76. //拖动的Item
  77. private PageEditItem tempItem;
  78. /// <summary>
  79. /// 是否正在拖拽排序中,通过该变量避免单击触发拖动
  80. /// </summary>
  81. private bool isDraging = false;
  82. //是否正在从外部拖入文件
  83. public bool isDragingEnter { get; set; } = false;
  84. //自动滚动速度
  85. private int speed = 0;
  86. private PageEditContentViewModel viewModel;
  87. private List<string> dropMoveFiles = null;
  88. public PageEditContent()
  89. {
  90. InitializeComponent();
  91. dropMoveFiles = new List<string>();
  92. }
  93. public PageEditContent(IEventAggregator eventAggregator) : this()
  94. {
  95. eventor = eventAggregator;
  96. unicode = App.mainWindowViewModel.SelectedItem.Unicode;
  97. timer = new DispatcherTimer();
  98. timer.Interval = TimeSpan.FromSeconds(0.3);
  99. timer.Tick += Timer_Tick;
  100. viewModel = this.DataContext as PageEditContentViewModel;
  101. viewModel.PageEditItems.CollectionChanged += PageEditItems_CollectionChanged;
  102. //订阅页面刷新事件
  103. eventor.GetEvent<PageEditNotifyEvent>().Subscribe(OneNotifyEvent, e => e.Unicode == unicode);
  104. eventAggregator.GetEvent<CleanSelectAllEvent>().Subscribe(CleanSelectAll, e => e.Unicode == unicode);
  105. //当退出页面编辑后
  106. //缩略图选中页面,要和当前显示的页面,一致
  107. eventAggregator.GetEvent<PageEditSelectedItemEvent>().Subscribe(OnPageEditSelectedItemRefreshEvent, e => e.Unicode == unicode);
  108. }
  109. private void OnPageEditSelectedItemRefreshEvent(PageEditSelectedItemEventArgs args)
  110. {
  111. if (viewModel.IsBOTAThumb == Visibility.Visible && args.SelectedItemIndex != -1)
  112. {
  113. viewModel.ListSelectedIndex = args.SelectedItemIndex;
  114. ListPageEdit.ScrollIntoView(ListPageEdit.SelectedItem);
  115. }
  116. }
  117. private void Timer_Tick(object sender, EventArgs e)
  118. {
  119. PulishEvent();
  120. timer?.Stop();
  121. }
  122. private void PageEditItems_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
  123. {
  124. //加入loaded判断,避免显示前频繁进入该事件,影响BOTA切换事件
  125. if (this.IsLoaded)
  126. {
  127. //未选 显示页面大小,插入文件后 会影响
  128. //if (viewModel.IsShowPageSize)
  129. //{
  130. // viewModel.ShowedPageSize = Visibility.Visible;
  131. // viewModel.HidePageSize = Visibility.Collapsed;
  132. //}
  133. //else
  134. //{
  135. // viewModel.ShowedPageSize = Visibility.Collapsed;
  136. // viewModel.HidePageSize = Visibility.Visible;
  137. //}
  138. //BOTA缩略图里 插入子项时,刷新子项大小
  139. if (GridBOTAHeader.Visibility == Visibility.Visible && e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Add)
  140. {
  141. ItemSuitAcutalWidth(this.ActualWidth);
  142. }
  143. //补充判断条件,修复页数多的文档,在BOTA展开的情况下,切换到页面编辑会卡死的问题
  144. if (GridBOTAHeader.Visibility != Visibility.Visible && !viewModel.Initializing)
  145. {
  146. //页面编辑模式下,页面总数变化后用于通知BOTA面板进行数据集刷新
  147. //只需要页面编辑通知缩略图,不需要缩略图通知页面编辑,因为现在每次导航进去时都会刷新item个数
  148. eventor.GetEvent<PageEditNotifyEvent>().Publish(new PageEditNotifyEventArgs(unicode, NotifyType.PageCountChanged));
  149. }
  150. }
  151. }
  152. private void OneNotifyEvent(PageEditNotifyEventArgs e)
  153. {
  154. switch (e.Type)
  155. {
  156. case NotifyType.RefreshPage:
  157. //计算当前区域的页面范围后传递回VM
  158. PulishEvent();
  159. break;
  160. case NotifyType.SelectItems:
  161. int index = 0;
  162. //根据Vm的参数选中部分页面
  163. if (e.PageRange.Count == 1)
  164. {
  165. if (e.PageRange[0] > 0)
  166. {
  167. ListPageEdit.SelectedIndex = e.PageRange[0] - 1;
  168. }
  169. if (ListPageEdit.SelectedItem != null)
  170. {
  171. ListPageEdit.ScrollIntoView(ListPageEdit.SelectedItem);
  172. index = ((PageEditItem)ListPageEdit.SelectedItem).PageNumber - 1;
  173. viewModel.RightSelectedIndex = index;
  174. }
  175. }
  176. else
  177. {
  178. ListPageEdit.SelectedItems.Clear();
  179. viewModel.RightSelectedIndexs.Clear();
  180. for (int i = 0; i < e.PageRange.Count; i++)
  181. {
  182. index = e.PageRange[i] - 1;
  183. if (index < ListPageEdit.Items.Count)
  184. {
  185. ListPageEdit.SelectedItems.Add(ListPageEdit.Items[index]);
  186. }
  187. if (ListPageEdit.SelectedItems.Count > 0)
  188. {
  189. //页码 下拉框 ,选择全选页面、奇数、偶数等情况,偶现IsMultiSelected=false,这里先强制设置一下
  190. viewModel.RightSelectedIndex = index;
  191. viewModel.RightSelectedIndexs.Add(index);
  192. }
  193. if (GridBOTAHeader.Visibility == Visibility.Visible)
  194. {
  195. if (ListPageEdit.SelectedItems.Count > 0)
  196. {
  197. if (ListPageEdit.Items.IndexOf(ListPageEdit.SelectedItems[ListPageEdit.SelectedItems.Count - 1]) == -1)
  198. {
  199. ListPageEdit.ScrollIntoView(ListPageEdit.SelectedItem);
  200. }
  201. else
  202. {
  203. ListPageEdit.ScrollIntoView(ListPageEdit.SelectedItems[ListPageEdit.SelectedItems.Count - 1]);
  204. }
  205. }
  206. }
  207. else
  208. {
  209. ListPageEdit.ScrollIntoView(ListPageEdit.SelectedItem);
  210. }
  211. }
  212. }
  213. if (ListPageEdit.SelectedItems.Count > 0)
  214. {
  215. viewModel.IsMultiSelected = true;
  216. viewModel.IsMouseRightButtonDown = false;
  217. viewModel.IsMouseRightButtonDown = true;
  218. }
  219. //以下方法 实用性不强,会跳转失败
  220. //缩略图 复制粘贴后,选中页面,要与阅读视图 对应
  221. //if (viewModel.viewContentViewModel.isInPageEdit == false && GridBOTAHeader.Visibility == Visibility.Visible)
  222. //{
  223. // viewModel.PDFViewer.GoToPage(index);
  224. //}
  225. break;
  226. case NotifyType.PageCountChanged:
  227. if (GridBOTAHeader.Visibility == Visibility.Visible)
  228. {
  229. viewModel?.GetSourceItems(false);
  230. }
  231. break;
  232. default:
  233. break;
  234. }
  235. }
  236. private void CleanSelectAll(CleanSelectAllArgs obj)
  237. {
  238. ListPageEdit.SelectedItems.Clear();
  239. ListPageEdit.SelectedIndex = viewModel.PDFViewer.CurrentIndex;
  240. }
  241. #region UI事件
  242. /// <summary>
  243. /// 每次显示的时候就触发事件,刷新所有图片
  244. /// </summary>
  245. /// <param name="sender"></param>
  246. /// <param name="e"></param>
  247. private void PageEdit_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
  248. {
  249. if ((bool)e.NewValue)
  250. {
  251. //BOTA缩略图模式 需要先计算item宽度,再进行渲染页面的计算
  252. if (GridBOTAHeader.Visibility == Visibility.Visible)
  253. {
  254. ItemSuitAcutalWidth(this.ActualWidth);
  255. }
  256. //当前页面没有发生变化时,刷新图片 这种情况下会拿两次图,需要留意
  257. PulishEvent();
  258. //当前页面发生变化时通过ScrollChanged事件来刷新图片
  259. isFirstScrollChange = true;
  260. }
  261. }
  262. /// <summary>
  263. /// 鼠标滚轮滚动时触发的事件
  264. /// </summary>
  265. /// <param name="sender"></param>
  266. /// <param name="e"></param>
  267. public void ListPageEdit_ScrollChanged(object sender, ScrollChangedEventArgs e)
  268. {
  269. if (isFirstScrollChange)
  270. {
  271. PulishEvent();//第一次加载时触发的Scollchange 直接刷新界面,减少白板显示时间
  272. isFirstScrollChange = false;
  273. return;
  274. }
  275. else
  276. {
  277. if (e.VerticalChange != 0)
  278. timer?.Start();//暂时找不到比较好的 判断Scroller停止的方法,先用计时器粗略判断
  279. }
  280. }
  281. /// <summary>
  282. /// 拖动右侧滑块时触发的事件
  283. /// </summary>
  284. /// <param name="sender"></param>
  285. /// <param name="e"></param>
  286. private void ListPageEdit_Scroll(object sender, System.Windows.Controls.Primitives.ScrollEventArgs e)
  287. {
  288. scrolltype = e.ScrollEventType;
  289. if (scrolltype != System.Windows.Controls.Primitives.ScrollEventType.EndScroll)
  290. {
  291. timer?.Stop();
  292. return;
  293. }
  294. PulishEvent();
  295. }
  296. #endregion UI事件
  297. #region 方法
  298. /// <summary>
  299. /// 发布事件
  300. /// </summary>
  301. public void PulishEvent()
  302. {
  303. //判空 避免某些乱七八糟的情况下异常
  304. if (ListPageEdit != null & ListPageEdit.Items.Count > 0)
  305. {
  306. var itemSize = new Size((ListPageEdit.Items[0] as PageEditItem).ItemSize.Width + 32, (ListPageEdit.Items[0] as PageEditItem).ItemSize.Height + 30);
  307. var range = GetRoughFromView(ListPageEdit, itemSize, new Thickness(5, 10, 5, 10));
  308. if ((bool)TbnTwoLine.IsChecked)
  309. {
  310. ///双列模式下要计算两列item
  311. range = new Tuple<int, int, int>(range.Item1, range.Item2 * 2, range.Item3);
  312. }
  313. eventor.GetEvent<PageEditRefreshEvent>().Publish(new PageEditRefreshEventArgs() { Unicode = unicode, PageRange = range });
  314. }
  315. }
  316. /// <summary>
  317. /// 获取滑轨的垂直偏移量,结合item总数和Item尺寸以及间隔,来估算实际展示的item范围
  318. /// 返回值为页面范围 从1开始
  319. /// </summary>
  320. /// <param name="view"></param>
  321. /// <param name="itemSize"></param>
  322. /// <param name="itemMargin"></param>
  323. /// <returns></returns>
  324. private Tuple<int, int, int> GetRoughFromView(ListBox view, Size itemSize, Thickness itemMargin)
  325. {
  326. //var scrollViewer = GetScrollHost(view);
  327. var scrollViewer = CommonHelper.FindVisualChild<ScrollViewer>(view);
  328. if (scrollViewer == null || scrollViewer.ActualHeight == 0 || scrollViewer.ActualWidth == 0)//视图展开
  329. return new Tuple<int, int, int>(0, 0, 0);
  330. try
  331. {
  332. var currentHeight = scrollViewer.ActualHeight - view.Padding.Top;
  333. var currentWidth = scrollViewer.ActualWidth;
  334. //计算当前窗口大小能显示的行数和列数
  335. var columnCount = (int)(currentWidth / (itemSize.Width + itemMargin.Left));
  336. var rowCount = (int)Math.Ceiling(currentHeight / (itemSize.Height + itemMargin.Bottom));
  337. var preItemCount = (int)((scrollViewer.VerticalOffset / scrollViewer.ExtentHeight) * ((view.Items.Count + columnCount - 1) / columnCount));//滑动百分比*行数 = 大概的垂直位置
  338. preItemCount = preItemCount * columnCount;
  339. var preEnd = (int)(((scrollViewer.VerticalOffset + scrollViewer.ActualHeight) / scrollViewer.ExtentHeight) * ((view.Items.Count + columnCount - 1) / columnCount));
  340. preEnd = preEnd * columnCount + columnCount - 1;
  341. var middle = (int)Math.Ceiling(preItemCount + preEnd / 2d);
  342. return new Tuple<int, int, int>(
  343. Math.Max(preItemCount, 0),
  344. Math.Min(view.Items.Count, preEnd),
  345. middle);
  346. }
  347. catch { }
  348. return new Tuple<int, int, int>(0, 0, 0);
  349. }
  350. /// <summary>
  351. /// 获取listbox里的ScrollViewer对象
  352. /// 留意如果有重写ListBox对象,该方法可能无效
  353. /// </summary>
  354. /// <param name="listBox"></param>
  355. /// <returns></returns>
  356. private ScrollViewer GetScrollHost(ListBox listBox)
  357. {
  358. if (VisualTreeHelper.GetChildrenCount(listBox) > 0)
  359. {
  360. int s = VisualTreeHelper.GetChildrenCount(listBox);
  361. Border border = VisualTreeHelper.GetChild(listBox, 0) as Border;
  362. if (border != null)
  363. {
  364. return VisualTreeHelper.GetChild(border, 0) as ScrollViewer;
  365. }
  366. }
  367. return null;
  368. }
  369. #endregion 方法
  370. /// <summary>
  371. /// 输入框显示时,自动获取焦点
  372. /// </summary>
  373. /// <param name="sender"></param>
  374. /// <param name="e"></param>
  375. private void TextBox_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
  376. {
  377. if ((bool)e.NewValue)
  378. {
  379. (sender as Control).Focus();
  380. }
  381. }
  382. private void ListPageEdit_PreviewMouseMove(object sender, MouseEventArgs e)
  383. {
  384. try
  385. {
  386. if (e.LeftButton == MouseButtonState.Pressed && !isDragingEnter)
  387. {
  388. //鼠标框选逻辑
  389. if (startChoose)
  390. {
  391. viewModel.IsMouseRightButtonDown = true;
  392. viewModel.IsMouseRightButtonDown = false;
  393. viewModel.RightSelectedIndex = -1;
  394. viewModel.RightSelectedIndexs.Clear();
  395. var position = e.GetPosition(ListPageEdit);
  396. if (position.X < 5 || position.X > ListPageEdit.ActualWidth - 5 || position.Y < 5 || position.Y > ListPageEdit.ActualHeight - 5)
  397. {
  398. startChoose = false;
  399. RectChoose.Visibility = Visibility.Collapsed;
  400. //暂时未想到靠近顶部和底部自动翻滚的好方法,只能先屏蔽这部分功能
  401. Mouse.Capture(null);
  402. return;
  403. }
  404. //矩形框内的item设为选中
  405. DoSelectItems();
  406. return;
  407. }
  408. //拖拽排序的逻辑
  409. else
  410. {
  411. var pos = e.GetPosition(ListPageEdit);
  412. if (pos.Y < 0 || pos.Y > ListPageEdit.ActualHeight)
  413. {
  414. LineInset.Visibility = Visibility.Collapsed;
  415. ImgPicture.Visibility = Visibility.Collapsed;
  416. return;
  417. }
  418. HitTestResult result = VisualTreeHelper.HitTest(ListPageEdit, pos);
  419. if (result == null)
  420. {
  421. return;
  422. }
  423. var listBoxItem = CommonHelper.FindVisualParent<ListBoxItem>(result.VisualHit);
  424. if (listBoxItem == null)
  425. {
  426. return;
  427. }
  428. isDragingEnter = false;
  429. tempItem = listBoxItem.DataContext as PageEditItem;
  430. var item_pos = e.GetPosition(listBoxItem);
  431. if (item_pos != null)
  432. {
  433. item_x = item_pos.X;
  434. item_y = item_pos.Y;
  435. }
  436. //string filename = Guid.NewGuid().ToString() + ".pdf";
  437. //string tempPath = System.IO.Path.Combine(System.IO.Path.GetTempPath(), filename);
  438. //System.IO.File.Create(tempPath);
  439. //string[] files = new string[1];
  440. //files[0] = tempPath;
  441. var scroll = GetScrollHost(ListPageEdit);
  442. //页面 是App内的拖拽 ,还是拖拽 页面 出 App 是一起处理
  443. //将付费锁逻辑提前,避免拖拽出窗体成功
  444. if (!ServiceHelper.IAPBeforeFunction())
  445. {
  446. return;
  447. }
  448. #region 拖拽 页面 到 桌面/文件夹 ,提取文件
  449. //C:\Users\oyxh\AppData\Local\Temp\
  450. string dir = System.IO.Path.Combine(System.IO.Path.GetTempPath());
  451. if (!System.IO.Directory.Exists(dir))
  452. {
  453. System.IO.Directory.CreateDirectory(dir);
  454. }
  455. //string tempPath = System.IO.Path.Combine(System.IO.Path.GetTempPath(), filename);
  456. List<int> pages = GetSelectedItems();
  457. pages.Sort();
  458. string[] files = new string[1];
  459. if (pages.Count > 0)
  460. {
  461. //多选页面 提取成一个文件夹
  462. string filename = viewModel.PDFViewer.Document.FileName + " " + "pages " + CommonHelper.GetPageParmFromList(pages) + ".pdf";
  463. string tempPath = System.IO.Path.Combine(dir, filename);
  464. //删除 临时文件的同名文件
  465. if (File.Exists(tempPath))
  466. {
  467. File.Delete(tempPath);
  468. }
  469. string path = CommonHelper.CreateFilePath(tempPath);
  470. files[0] = path;
  471. dropMoveFiles.Add(path);
  472. CPDFDocument savedoc = CPDFDocument.CreateDocument();
  473. string range = String.Join(",", pages);
  474. bool result1 = savedoc.ImportPages(viewModel.PDFViewer.Document, range);
  475. //if (!result1)
  476. //{
  477. // viewModel.ShowToast();
  478. // viewModel.IsLoading = Visibility.Collapsed;
  479. // return;
  480. //}
  481. result1 = savedoc.WriteToFilePath(path);
  482. if (!result1)
  483. {
  484. viewModel.ShowToast();
  485. }
  486. savedoc.Release();//释放内存
  487. }
  488. #region 多选页面 分别生成单独文件
  489. //List<int> pagenums = new List<int>();
  490. //for (int i = 0; i < viewModel.PageEditItems.Count; i++)
  491. //{
  492. // if (viewModel.PageEditItems[i].Selected)
  493. // {
  494. // pagenums.Add(viewModel.PageEditItems[i].PageNumber);
  495. // }
  496. //}
  497. //string[] files = new string[pagenums.Count];
  498. //for (int i = 0; i < pagenums.Count; i++)
  499. //{
  500. // string filename = viewModel.PDFViewer.Document.FileName + " " + pagenums[i] + ".pdf";
  501. // string tempPath = System.IO.Path.Combine(dir, filename);
  502. // string path = CommonHelper.CreateFilePath(tempPath);
  503. // files[i] = path;
  504. // dropMoveFiles.Add(path);
  505. // CPDFDocument savedoc = CPDFDocument.CreateDocument();
  506. // bool result2 = savedoc.ImportPages(viewModel.PDFViewer.Document, pagenums[i].ToString());
  507. // if (!result2)
  508. // {
  509. // savedoc.Release();
  510. // continue;
  511. // }
  512. // result2 = savedoc.WriteToFilePath(path);
  513. // if (!result2)
  514. // {
  515. // savedoc.Release();
  516. // continue;
  517. // }
  518. // savedoc.Release();//释放内存
  519. //}
  520. #endregion 多选页面 分别生成单独文件
  521. //string[] files = new string[1];
  522. //files[0] = tempPath;
  523. DataObject dataObj = new DataObject(DataFormats.FileDrop, files);
  524. #endregion 拖拽 页面 到 桌面/文件夹 ,提取文件
  525. //禁用从窗体拖拽到桌面的方法
  526. //DataObject dataObj = new DataObject(listBoxItem);
  527. //注意!!!目前是通过DragDropEffects类型来区分app内拖拽和外部文件拖入。否则页面文件拖拽页面到PDFViewer,也会新生成一个页签
  528. //如果这里的DragDropEfeects类型有改动,也需要调整ViewContent里UserControl_Drop函数的判断逻辑
  529. DragDrop.DoDragDrop(ListPageEdit, dataObj, DragDropEffects.Copy);
  530. Mouse.Capture(ListPageEdit);
  531. //CleanDropMoveFiles();
  532. return;
  533. }
  534. }
  535. RectChoose.Visibility = Visibility.Collapsed;
  536. startChoose = false;
  537. LineInset.Visibility = Visibility.Collapsed;
  538. ImgPicture.Visibility = Visibility.Collapsed;
  539. Mouse.Capture(null);
  540. }
  541. catch
  542. {
  543. LineInset.Visibility = Visibility.Collapsed;
  544. ImgPicture.Visibility = Visibility.Collapsed;
  545. }
  546. }
  547. private List<int> GetSelectedItems()
  548. {
  549. List<int> pages = new List<int>();
  550. for (int i = 0; i < ListPageEdit.SelectedItems.Count; i++)
  551. {
  552. //这样拿 更精准
  553. if (ListPageEdit.SelectedItems[i] is PageEditItem pageEditItem)
  554. {
  555. pages.Add(pageEditItem.PageNumber);
  556. }
  557. }
  558. return pages;
  559. }
  560. /// <summary>
  561. /// 判断是否开始框选、记录框选起始位置
  562. /// </summary>
  563. /// <param name="sender"></param>
  564. /// <param name="e"></param>
  565. private void ListPageEdit_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  566. {
  567. var pos = e.GetPosition(ListPageEdit);
  568. HitTestResult result = VisualTreeHelper.HitTest(ListPageEdit, pos);
  569. if (result == null)
  570. {
  571. return;
  572. }
  573. //未选中item 并且不是点击滑轨时 开始框选
  574. var listBoxItem = CommonHelper.FindVisualParent<ListBoxItem>(result.VisualHit);
  575. var scroller = CommonHelper.FindVisualParent<ScrollBar>(result.VisualHit);
  576. if (listBoxItem == null)
  577. {
  578. viewModel.IsMouseRightButtonDown = true;
  579. viewModel.IsMouseRightButtonDown = false;
  580. viewModel.RightSelectedIndex = -1;
  581. viewModel.RightSelectedIndexs.Clear();
  582. if (scroller != null)
  583. {
  584. startChoose = false;
  585. return;
  586. }
  587. //点击空白处时开始框选
  588. startChoose = true;
  589. if (ListPageEdit.SelectedItems.Count > 0)
  590. {
  591. ListPageEdit.SelectedItems.Clear();
  592. }
  593. starPosition = e.GetPosition(ListPageEdit);
  594. starPosition = new Point(starPosition.X, starPosition.Y + GetWrapPanel(ListPageEdit).VerticalOffset);
  595. Mouse.Capture(ListPageEdit);
  596. return;
  597. }
  598. //选中了item 时,不能框选
  599. startChoose = false;
  600. isDragingEnter = false;
  601. //更改系统的选中规则,选中状态下,鼠标松开后取消选中
  602. //方便实现多选拖拽功能
  603. if (listBoxItem.IsSelected == true && !Keyboard.IsKeyDown(Key.LeftCtrl))
  604. {
  605. e.Handled = true;
  606. }
  607. }
  608. private void ListPageEdit_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e)
  609. {
  610. var pos = e.GetPosition(ListPageEdit);
  611. HitTestResult result = VisualTreeHelper.HitTest(ListPageEdit, pos);
  612. if (result == null)
  613. {
  614. return;
  615. }
  616. var listBoxItem = CommonHelper.FindVisualParent<ListBoxItem>(result.VisualHit);
  617. if (listBoxItem == null)
  618. {
  619. return;
  620. }
  621. //更改系统默认的选中规则,多选后,鼠标单击抬起后再选中单个
  622. //拖拽框选之后的抬起鼠标不进入处理
  623. if (!startChoose && !Keyboard.IsKeyDown(Key.LeftCtrl) && !Keyboard.IsKeyDown(Key.LeftShift))
  624. {
  625. ListPageEdit.SelectedItems.Clear();
  626. ListPageEdit.SelectedItem = listBoxItem;
  627. listBoxItem.IsSelected = true;
  628. return;
  629. }
  630. Mouse.Capture(null);
  631. //结束鼠标框选
  632. startChoose = false;
  633. RectChoose.Visibility = Visibility.Collapsed;
  634. }
  635. /// <summary>
  636. /// 获取Listobox的Wrappanel容器
  637. /// </summary>
  638. /// <param name="listBox"></param>
  639. /// <returns></returns>
  640. public VirtualizingWrapPanel GetWrapPanel(ListBox listBox)
  641. {
  642. Border border = VisualTreeHelper.GetChild(listBox, 0) as Border;
  643. var panel = CommonHelper.FindVisualChild<VirtualizingWrapPanel>(border);
  644. return panel;
  645. }
  646. /// <summary>
  647. ///根据鼠标拖选的框 选中矩形框里面的Item
  648. /// </summary>
  649. private void DoSelectItems()
  650. {
  651. var s = GetScrollHost(ListPageEdit);
  652. Point start = new Point();
  653. //通过 实时的垂直偏移量和第一次的偏移量抵消,来获取准确的垂直偏移值。
  654. start = new Point(starPosition.X, starPosition.Y - s.VerticalOffset);
  655. var rec = new Rect(start, Mouse.GetPosition(ListPageEdit));
  656. RectChoose.Margin = new Thickness(rec.Left, rec.Top, 0, 0);
  657. RectChoose.Width = rec.Width;
  658. RectChoose.Height = rec.Height;
  659. RectChoose.Visibility = Visibility.Visible;
  660. //检测遍历所有项,筛选在矩形框中的Item
  661. for (int i = 0; i < ListPageEdit.Items.Count; i++)
  662. {
  663. var _item = ListPageEdit.ItemContainerGenerator.ContainerFromIndex(i) as ListBoxItem;
  664. //通过这一步来避免重复误选中
  665. var parent = CommonHelper.FindVisualParent<VirtualizingWrapPanel>(_item);
  666. if (parent == null)
  667. continue;
  668. var v = VisualTreeHelper.GetOffset(_item);
  669. if (rec.IntersectsWith(new Rect(v.X, v.Y, _item.ActualWidth, _item.ActualHeight)))
  670. {
  671. ListPageEdit.SelectedItems.Add(ListPageEdit.Items[i]);
  672. }
  673. else
  674. {
  675. ListPageEdit.SelectedItems.Remove(ListPageEdit.Items[i]);
  676. }
  677. }
  678. return;
  679. }
  680. /// <summary>
  681. /// 退出拖拽模式
  682. /// </summary>
  683. private void ExitDraging()
  684. {
  685. LineInset.Visibility = Visibility.Collapsed;
  686. ImgPicture.Visibility = Visibility.Collapsed;
  687. isDraging = false;
  688. }
  689. /// <summary>
  690. /// 拖拽释放后的处理逻辑
  691. /// </summary>
  692. /// <param name="sender"></param>
  693. /// <param name="e"></param>
  694. private async void ListPageEdit_Drop(object sender, DragEventArgs e)
  695. {
  696. //isDragingEnter = false;
  697. if (!isDraging)
  698. {
  699. //未拖拽时隐藏插入标记和虚影
  700. LineInset.Visibility = Visibility.Collapsed;
  701. ImgPicture.Visibility = Visibility.Collapsed;
  702. return;
  703. }
  704. //拖入非法格式释放时 返回
  705. string[] file = (string[])e.Data.GetData(DataFormats.FileDrop);
  706. if (file != null)
  707. {
  708. #region 从外部拖拽插入文件
  709. if (isDragingEnter)
  710. {
  711. //不能将付费锁 放到 grid_DragOver,会卡顿
  712. //将付费锁逻辑提前,避免因弹窗显示后导致虚影无法消失问题
  713. if (!ServiceHelper.IAPBeforeFunction())
  714. {
  715. LineInset.Visibility = Visibility.Collapsed;
  716. ImgPicture.Visibility = Visibility.Collapsed;
  717. isDragingEnter = false;
  718. return;
  719. }
  720. //注释从外部拖拽插入文件的功能
  721. var files = (string[])e.Data.GetData(DataFormats.FileDrop);
  722. Array.Reverse(files);
  723. foreach (string item in files)
  724. {
  725. System.IO.FileInfo info = new System.IO.FileInfo(item);
  726. string fileName = viewModel.GetInsertFromFile(item);
  727. //if (System.IO.Path.GetExtension(item).ToLower() == ".pdf" && info.Length > 0)
  728. //{
  729. // int index = InsertIndex == -1 ? 0 : InsertIndex;
  730. // await viewModel.InsertFromFile(index, item);
  731. // viewModel.ReloadAfterOption(true, true, new Tuple<int, int>(0, ListPageEdit.Items.Count));
  732. //}
  733. if (info.Length > 0 && File.Exists(fileName))
  734. {
  735. int index = InsertIndex == -1 ? 0 : InsertIndex;
  736. //将文档验证是否为空,是否解密,置前,若为空直接退出
  737. bool IsLocked = viewModel.GetDocumentIsDiscryptied(fileName, null, out CPDFDocument doc, out string password);
  738. if (IsLocked == false)
  739. {
  740. LineInset.Visibility = Visibility.Collapsed;
  741. ImgPicture.Visibility = Visibility.Collapsed;
  742. isDragingEnter = false;
  743. return;
  744. }
  745. ListPageEdit.SelectedItems.Clear();
  746. bool flag = await viewModel.InsertFromFile(index, fileName, doc, password);
  747. if (flag)
  748. {
  749. viewModel.ReloadAfterOption(true, true, new Tuple<int, int>(0, ListPageEdit.Items.Count));
  750. }
  751. }
  752. }
  753. //其他文件 则新增一个页签打开
  754. // DragAddTab.Invoke(dragingEnterPath, new RoutedEventArgs());//底层库需要加一个 Load(TPDFDocument)的接口
  755. LineInset.Visibility = Visibility.Collapsed;
  756. ImgPicture.Visibility = Visibility.Collapsed;
  757. isDragingEnter = false;
  758. return;
  759. }
  760. #endregion 从外部拖拽插入文件
  761. //return;
  762. }
  763. var pos = e.GetPosition(ListPageEdit);
  764. var result = VisualTreeHelper.HitTest(ListPageEdit, pos);
  765. if (result == null)
  766. {
  767. //超出当前可控区域
  768. ExitDraging();
  769. return;
  770. }
  771. //查找元数据
  772. //var sourcePerson = e.Data.GetData(typeof(StackPanel)) as StackPanel;
  773. if (tempItem == null)
  774. {
  775. ExitDraging();
  776. return;
  777. }
  778. //查找目标数据
  779. int targetindex = 0;//目标插入位置
  780. if (InsertIndex != -1)
  781. {
  782. //往前移动时 此index 不是准确的,需要处理++
  783. targetindex = InsertIndex;
  784. }
  785. //else//基本不会命中 仅作为保险措施
  786. //{
  787. // var listBoxItem = CommonHelper.FindVisualParent<ListBoxItem>(result.VisualHit);
  788. // if (listBoxItem == null)
  789. // {
  790. // ////鼠标停留在两个item之间或其他无效区域 暂时不做处理(比较麻烦)
  791. // ExitDraging();
  792. // return;
  793. // }
  794. // var targetPerson = listBoxItem;
  795. // targetPerson.Opacity = 1;
  796. // sourcePerson.Opacity = 1;
  797. // if (ReferenceEquals(targetPerson, sourcePerson))
  798. // {
  799. // ExitDraging();
  800. // return;
  801. // }
  802. // targetindex = ListPageEdit.Items.IndexOf(targetPerson);
  803. //}
  804. List<ListBoxItem> list = new List<ListBoxItem>();
  805. List<int> sourceindex = new List<int>();//需要保存每个页面对应的位置
  806. //开始排序
  807. List<int> pages = new List<int>();
  808. //要先对所有选中项 根据页码排序
  809. for (int i = 0; i < ListPageEdit.SelectedItems.Count; i++)
  810. {
  811. var pageindex = ListPageEdit.Items.IndexOf(ListPageEdit.SelectedItems[i] as PageEditItem);
  812. pages.Add(pageindex);//存入的为页码索引值
  813. }
  814. if (pages.Count <= 0)
  815. {
  816. ExitDraging();
  817. return;
  818. }
  819. viewModel.DragToSort(targetindex, pages);
  820. ExitDraging();
  821. isDraging = false;
  822. CleanDropMoveFiles();
  823. }
  824. /// <summary>
  825. /// 拖拽完成后,清空临时目录 的文件
  826. /// </summary>
  827. private void CleanDropMoveFiles()
  828. {
  829. if (dropMoveFiles != null)
  830. {
  831. if (dropMoveFiles.Count > 0)
  832. {
  833. for (int i = 0; i < dropMoveFiles.Count; i++)
  834. {
  835. if (File.Exists(dropMoveFiles[i]))
  836. {
  837. File.Delete(dropMoveFiles[i]);
  838. }
  839. }
  840. dropMoveFiles.Clear();
  841. }
  842. }
  843. }
  844. private void MidLane_Drop(object sender, DragEventArgs e)
  845. {
  846. ListPageEdit_Drop(sender, e);
  847. }
  848. private void ImgPicture_Drop(object sender, DragEventArgs e)
  849. {
  850. ListPageEdit_Drop(sender, e);
  851. }
  852. /// <summary>
  853. /// 拖拽事件写在外部的Grid里,会更加流畅
  854. /// </summary>
  855. /// <param name="sender"></param>
  856. /// <param name="e"></param>
  857. private void Grid_DragOver(object sender, DragEventArgs e)
  858. {
  859. try
  860. {
  861. Trace.WriteLine("Grid_DragOver 文件拖出App");
  862. //ctrl建按下 不显示插入标记和虚影 因为释放不会响应drop事件
  863. if (e.KeyStates == (DragDropKeyStates.ControlKey | DragDropKeyStates.LeftMouseButton) || e.KeyStates == (DragDropKeyStates.ShiftKey | DragDropKeyStates.LeftMouseButton | DragDropKeyStates.ControlKey))
  864. return;
  865. //从外部拖入文件时 返回
  866. string[] file = (string[])e.Data.GetData(DataFormats.FileDrop);
  867. if (file != null)
  868. {
  869. }
  870. //滚动后有 位置不准确 要减去滚动偏移量
  871. //控制线的位置
  872. var pos = e.GetPosition(ListPageEdit);
  873. var result = VisualTreeHelper.HitTest(ListPageEdit, pos);
  874. if (result == null)
  875. {
  876. return;
  877. //MidLane.Visibility = Visibility.Collapsed;
  878. //return;
  879. }
  880. //获取当前鼠标指针下的容器
  881. var listBoxItem = CommonHelper.FindVisualParent<ListBoxItem>(result.VisualHit);
  882. if (listBoxItem == null)
  883. {
  884. //页面 拖出App后存在极少数情况会显示 标记线、缩略图,注释掉=》item中间不会有虚影,观感不好
  885. //LineInset.Visibility = Visibility.Collapsed;
  886. //ImgPicture.Visibility = Visibility.Collapsed;
  887. //MidLane.Visibility = Visibility.Collapsed;
  888. //return;
  889. }
  890. #region 计算虚影位置
  891. //xaml层 要设置 虚影控件为左上
  892. double xPos = 0;
  893. double yPos = 0;
  894. //内部拖动
  895. if (!isDragingEnter)
  896. {
  897. if (tempItem != null)
  898. {
  899. ImgPicture.Width = tempItem.ItemSize.Width;
  900. ImgPicture.Height = tempItem.ItemSize.Height;
  901. ImgPicture.Source = tempItem.Image;
  902. xPos = e.GetPosition(ListPageEdit).X - item_x;
  903. yPos = e.GetPosition(ListPageEdit).Y - item_y;
  904. }
  905. }
  906. else
  907. {
  908. DragDropHelper.DragOver(this, e);
  909. //从外部拖入的逻辑
  910. //var pic = ToBitmapSource(dragingEnterPath);
  911. //ShadowPicture.Width = pic.Width;
  912. //ShadowPicture.Height = pic.Height;
  913. //ShadowPicture.Source = pic;
  914. //xPos = e.GetPosition(ListPageEdit).X - pic.Width / 2;
  915. //yPos = e.GetPosition(ListPageEdit).Y - pic.Height / 2;
  916. }
  917. ImgPicture.Margin = new Thickness(xPos, yPos, 0, 0);
  918. #endregion 计算虚影位置
  919. #region 计算插入标记位置
  920. var scroll = GetScrollHost(ListPageEdit);
  921. if (listBoxItem != null)
  922. {
  923. //虚拟化影响到该值计算
  924. var p = VisualTreeHelper.GetOffset(listBoxItem);//计算控件在容器中的偏移(位置)
  925. LineInset.Visibility = Visibility.Visible;
  926. if (!isDragingEnter)
  927. {
  928. ImgPicture.Visibility = Visibility.Visible;
  929. }
  930. else
  931. {
  932. ImgPicture.Visibility = Visibility.Collapsed;
  933. }
  934. var panel = GetWrapPanel(ListPageEdit);
  935. //var item = panel.ItemSize.Width;
  936. //var item = (ListPageEdit.ItemContainerGenerator.ContainerFromIndex(0) as ListBoxItem).DesiredSize.Width;
  937. var item = listBoxItem.DesiredSize.Width;
  938. int count = (int)(panel.ViewportWidth / item);
  939. var gap = (panel.ViewportWidth - count * item) / (count + 1) * 1.0;
  940. LineInset.X2 = LineInset.X1 = p.X + gap / 2 + listBoxItem.DesiredSize.Width;
  941. if (pos.X < p.X + gap / 2 + listBoxItem.ActualWidth / 2)
  942. {
  943. LineInset.X2 = LineInset.X1 = p.X - gap / 2;
  944. InsertIndex = ListPageEdit.Items.IndexOf(listBoxItem.DataContext as PageEditItem);
  945. }
  946. else
  947. {
  948. InsertIndex = ListPageEdit.Items.IndexOf(listBoxItem.DataContext as PageEditItem) + 1;
  949. }
  950. Console.WriteLine("InsertIndex:{0}\r\n", InsertIndex);
  951. //MidLane.Y1 = p.Y - scroll.VerticalOffset;//向下滑动后要减去滑动值
  952. LineInset.Y1 = p.Y;
  953. if (LineInset.Y1 < 0)//避免超出上边界
  954. {
  955. LineInset.Y1 = 0;
  956. }
  957. //MidLane.Y2 = p.Y + listBoxItem.ActualHeight - scroll.VerticalOffset;//仿智能滚动后可能会导致 垂直滚动偏量不准确
  958. LineInset.Y2 = p.Y + listBoxItem.ActualHeight;
  959. if (LineInset.Y2 < 0)
  960. {
  961. LineInset.Y2 = 0;
  962. }
  963. }
  964. #endregion 计算插入标记位置
  965. //暂时处理 鼠标移出边框时,虚影的显示问题
  966. //230612 拖拽逻辑,为了更好的效果体现,暂时注释
  967. if (pos.Y <= 30 || pos.Y >= ListPageEdit.ActualHeight - 10)
  968. {
  969. LineInset.Visibility = Visibility.Collapsed;
  970. ImgPicture.Visibility = Visibility.Collapsed;
  971. }
  972. if (pos.X <= 40 || pos.X >= scroll.ViewportWidth - 50)
  973. {
  974. LineInset.Visibility = Visibility.Collapsed;
  975. ImgPicture.Visibility = Visibility.Collapsed;
  976. }
  977. #region 靠近上下边界时,自动滚动,离边界越近,滚动速度越快
  978. speed = 0;
  979. if (pos.Y >= ListPageEdit.ActualHeight - 30)
  980. {
  981. speed = 30 - (int)(ListPageEdit.ActualHeight - pos.Y);
  982. }
  983. else if (pos.Y <= 30)
  984. {
  985. speed = (int)(pos.Y - 30);
  986. }
  987. var v = scroll.VerticalOffset;
  988. scroll.ScrollToVerticalOffset(v + speed);//触发连续滚动
  989. #endregion 靠近上下边界时,自动滚动,离边界越近,滚动速度越快
  990. }
  991. catch
  992. {
  993. }
  994. }
  995. /// <summary>
  996. /// 右键不会选中页面,不要跳转
  997. /// </summary>
  998. /// <param name="sender"></param>
  999. /// <param name="e"></param>
  1000. private void ListBoxItem_PreviewMouseRightButtonDown(object sender, MouseButtonEventArgs e)
  1001. {
  1002. //viewModel.IsAddPages = false;
  1003. viewModel.IsMouseRightButtonDown = true;
  1004. viewModel.RightSelectedIndex = -1;
  1005. viewModel.RightSelectedIndexs.Clear();
  1006. var item = (sender as ListBoxItem).DataContext as PageEditItem;
  1007. if (item != null)
  1008. {
  1009. viewModel.RightSelectedIndex = item.PageNumber - 1;
  1010. if (ListPageEdit.SelectedItems.Count > 1)
  1011. {
  1012. viewModel.IsMultiSelected = true;
  1013. viewModel.maxSelectedIndex = ListPageEdit.Items.IndexOf(ListPageEdit.SelectedItems[ListPageEdit.SelectedItems.Count - 1]);
  1014. foreach (var page in ListPageEdit.SelectedItems)
  1015. {
  1016. if (page is PageEditItem pageEdit)
  1017. {
  1018. viewModel.RightSelectedIndexs.Add(pageEdit.PageNumber - 1);
  1019. }
  1020. }
  1021. }
  1022. else
  1023. {
  1024. //页面编辑 右键选中,bota 缩略图 右键不选中也不跳转
  1025. viewModel.ListSelectedIndex = viewModel.RightSelectedIndex;
  1026. if (viewModel.IsBOTAThumb == Visibility.Visible)
  1027. {
  1028. viewModel.ListSelectedIndex = -1;
  1029. }
  1030. viewModel.IsMultiSelected = false;
  1031. viewModel.maxSelectedIndex = -1;
  1032. }
  1033. }
  1034. //拦截响应选中事件
  1035. e.Handled = true;
  1036. }
  1037. private void ListBoxItem_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  1038. {
  1039. //viewModel.IsAddPages = false;
  1040. viewModel.IsMouseRightButtonDown = true;
  1041. viewModel.IsMouseRightButtonDown = false;
  1042. viewModel.RightSelectedIndex = -1;
  1043. viewModel.RightSelectedIndexs.Clear();
  1044. //增加辅助判断,防止误触发 拖动排序
  1045. //为了排除 页面 拖出App后,点击选择页面,造成拖动
  1046. isDraging = false;
  1047. if (GridBOTAHeader.Visibility == Visibility.Visible && viewModel.PDFViewer != null)
  1048. {
  1049. if (Keyboard.Modifiers == ModifierKeys.Shift || Keyboard.Modifiers == ModifierKeys.Control)
  1050. {
  1051. return;
  1052. }
  1053. var item = (sender as ListBoxItem).DataContext as PageEditItem;
  1054. if (item != null)
  1055. {
  1056. viewModel.PDFViewer.GoToPage(item.PageNumber - 1);
  1057. }
  1058. }
  1059. }
  1060. private void ListBoxItem_PreviewMouseDoubleClick(object sender, MouseButtonEventArgs e)
  1061. {
  1062. if (e.ChangedButton == MouseButton.Left)
  1063. {
  1064. //双击回到PDFViewer界面
  1065. var item = sender as ListBoxItem;
  1066. if (item != null)
  1067. {
  1068. var index = ListPageEdit.ItemContainerGenerator.IndexFromContainer(item);
  1069. //双击事件无法绑定Command 暂时采用这种方式调用VM里的方法
  1070. viewModel.BackToPDFViewer(index);
  1071. }
  1072. }
  1073. }
  1074. private void PageEdit_SizeChanged(object sender, SizeChangedEventArgs e)
  1075. {
  1076. //BOTA缩略图模式下需要调整Item宽度
  1077. if (GridBOTAHeader.Visibility == Visibility.Visible)
  1078. {
  1079. ItemSuitAcutalWidth(e.NewSize.Width);
  1080. }
  1081. if (e.NewSize.Width > 0)
  1082. {
  1083. //宽度变化后刷新一次视图 修复重复点击缩略图后图片不显示的问题
  1084. PulishEvent();
  1085. }
  1086. }
  1087. private void ItemSuitAcutalWidth(double width)
  1088. {
  1089. //缩略图模式下,保持一列或者两列显示
  1090. if ((bool)TbnTwoLine.IsChecked)
  1091. {
  1092. var itemwidth = (width - 140) / 2;
  1093. if (itemwidth < 0)
  1094. {
  1095. itemwidth = width / 4;
  1096. }
  1097. var itemHeight = 294 * itemwidth / 208.0;
  1098. viewModel.ChangeItemSize(new Size(itemwidth, itemHeight));
  1099. }
  1100. else
  1101. {
  1102. var itemwidth = 0.6 * width;
  1103. var itemheight = 294 * itemwidth / 208.0;
  1104. viewModel.ChangeItemSize(new Size(itemwidth, itemheight));
  1105. }
  1106. }
  1107. private void TbnTwoLine_Click(object sender, RoutedEventArgs e)
  1108. {
  1109. ItemSuitAcutalWidth(this.ActualWidth);
  1110. PulishEvent();
  1111. }
  1112. /// <summary>
  1113. /// 用来判断是否有外界拖入的事件
  1114. /// </summary>
  1115. /// <param name="sender"></param>
  1116. /// <param name="e"></param>
  1117. private void Grid_PreviewDragEnter(object sender, DragEventArgs e)
  1118. {
  1119. Trace.WriteLine("Grid_PreviewDragEnter 文件拖出App");
  1120. var files = (System.Array)e.Data.GetData(DataFormats.FileDrop);
  1121. if (files == null)//为null 表示内部拖动 触发的
  1122. {
  1123. return;
  1124. }
  1125. else
  1126. {
  1127. string temp = System.IO.Path.Combine(System.IO.Path.GetTempPath());
  1128. isDragingEnter = false;
  1129. foreach (string file in files)
  1130. {
  1131. if (File.Exists(file))
  1132. {
  1133. string dic = System.IO.Path.GetDirectoryName(file) + "\\";
  1134. //在 App内拖拽,或将 页面 拖出App
  1135. if (string.Compare(dic, temp, StringComparison.OrdinalIgnoreCase) == 0)
  1136. {
  1137. isDragingEnter = false;
  1138. }
  1139. //从外部 拖文件 进App
  1140. else
  1141. {
  1142. System.IO.FileInfo info = new System.IO.FileInfo(file);
  1143. // 文件里包含有pdf格式文件,就允许拖入
  1144. string type = System.IO.Path.GetExtension(file).ToLower();
  1145. if (viewModel.Txt.Contains(type) ||
  1146. viewModel.Word.Contains(type) ||
  1147. viewModel.Ppt.Contains(type) ||
  1148. viewModel.Excel.Contains(type) ||
  1149. viewModel.Html.Contains(type) ||
  1150. viewModel.Image.Contains(type) ||
  1151. viewModel.Pdf.Contains(type) && info.Length > 0)
  1152. {
  1153. isDragingEnter = true;
  1154. }
  1155. //if (System.IO.Path.GetExtension(file).ToLower() == ".pdf" && info.Length > 0)
  1156. //{
  1157. // isDragingEnter = true;
  1158. //}
  1159. }
  1160. ////文件拖出app 最后在这里 结束
  1161. //if (isExtractEnter)
  1162. //{
  1163. // isExtractEnter = false;
  1164. // return;
  1165. //}
  1166. //else
  1167. //{
  1168. // System.IO.FileInfo info = new System.IO.FileInfo(file);
  1169. // //只要拖拽进来的文件里包含有pdf格式文件,就允许拖入
  1170. // if (System.IO.Path.GetExtension(file).ToLower() == ".pdf" && info.Length > 0)
  1171. // {
  1172. // isDragingEnter = true;
  1173. // isExtractEnter = false;
  1174. // }
  1175. //}
  1176. }
  1177. }
  1178. //viewModel.IsAddPages = true;
  1179. DragDropHelper.DragEnter(this, e);
  1180. }
  1181. }
  1182. private void Grid_DragLeave(object sender, DragEventArgs e)
  1183. {
  1184. DragDropHelper.DragLeave();
  1185. }
  1186. private void Grid_Drop(object sender, DragEventArgs e)
  1187. {
  1188. DragDropHelper.Drop(this, e);
  1189. }
  1190. private void ListBoxItem_DragLeave(object sender, DragEventArgs e)
  1191. {
  1192. //增加辅助判断,防止误触发 拖动排序
  1193. //较大幅度拖动才能触发排序
  1194. isDraging = true;
  1195. }
  1196. private void Border_Drop(object sender, DragEventArgs e)
  1197. {
  1198. }
  1199. private async void TextBoxEx_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
  1200. {
  1201. var text = sender as TextBox;
  1202. if (text != null)
  1203. {
  1204. await Task.Delay(50);
  1205. text.Focus();
  1206. }
  1207. }
  1208. private void TextBoxEx_TextChanged(object sender, TextChangedEventArgs e)
  1209. {
  1210. var text = sender as TextBox;
  1211. if (text.Visibility == Visibility.Visible && string.IsNullOrEmpty(text.Text))
  1212. {
  1213. text.Focus();
  1214. }
  1215. }
  1216. private void TextBoxEx_LostFocus(object sender, RoutedEventArgs e)
  1217. {
  1218. //因为需要处理点击按钮或者点击列表失去焦点是 不进行弹窗 因此写在cs里,方便获取UI控件
  1219. var element = FocusManager.GetFocusedElement(this);
  1220. var visual = VisualTreeHelper.HitTest(this, Mouse.GetPosition(this));
  1221. //点击其他区域失去焦点时 不响应页码判断逻辑
  1222. if (visual != null)
  1223. {
  1224. var listbox = CommonHelper.FindVisualParent<ListBox>(visual.VisualHit);
  1225. if (listbox != null)
  1226. {
  1227. //点击在listbox列表内
  1228. return;
  1229. }
  1230. var image = CommonHelper.FindVisualParent<Image>(visual.VisualHit);
  1231. if (image != null)
  1232. {
  1233. //点击在listbox列表内,具体某一项时,上面的判断调整可能失效,需要补充条件
  1234. return;
  1235. }
  1236. var button = CommonHelper.FindVisualParent<Button>(visual.VisualHit);
  1237. if (button != null)
  1238. {
  1239. //点击在按钮时
  1240. return;
  1241. }
  1242. var combox = CommonHelper.FindVisualParent<ComboBox>(visual.VisualHit);
  1243. if (combox != null)
  1244. {
  1245. //点击在下拉框时
  1246. return;
  1247. }
  1248. viewModel.lostfocus(e);
  1249. }
  1250. }
  1251. private void Grid_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  1252. {
  1253. var visual = VisualTreeHelper.HitTest(GridHeader, Mouse.GetPosition(GridHeader));
  1254. if (visual == null)
  1255. {
  1256. //点击区域不是二级菜单区域的Grid时,返回
  1257. return;
  1258. }
  1259. var menuItem = CommonHelper.FindVisualParent<ComboBoxItem>(visual.VisualHit);
  1260. if (menuItem != null)
  1261. {
  1262. //点击位置为下拉菜单子项时,返回
  1263. return;
  1264. }
  1265. if (visual != null && (visual.VisualHit as Grid) != null)
  1266. {
  1267. //点击工具栏空白处时 失去焦点
  1268. ListPageEdit.Focus();
  1269. }
  1270. }
  1271. private void MenuItem_Click(object sender, RoutedEventArgs e)
  1272. {
  1273. //因为需要获取准确的选中页面,因此把入口放在.cs代码里
  1274. List<int> lists = new List<int>();
  1275. foreach (PageEditItem item in ListPageEdit.SelectedItems)
  1276. {
  1277. lists.Add(item.PageNumber);
  1278. }
  1279. viewModel.print(lists);
  1280. }
  1281. private void PageEdit_Unloaded(object sender, RoutedEventArgs e)
  1282. {
  1283. //释放定时器 避免内存泄露
  1284. timer?.Stop();
  1285. if (timer != null)
  1286. {
  1287. timer.Tick -= Timer_Tick;
  1288. timer = null;
  1289. }
  1290. }
  1291. private void PageEdit_Loaded(object sender, RoutedEventArgs e)
  1292. {
  1293. if (timer == null)
  1294. {
  1295. timer = new DispatcherTimer();
  1296. timer.Tick += Timer_Tick;
  1297. }
  1298. }
  1299. private void CmbPageRange_PreviewTextInput(object sender, TextCompositionEventArgs e)
  1300. {
  1301. Regex regex = new Regex("[^0-9,-]+"); // 限制仅允许数字、逗号和横杠
  1302. e.Handled = regex.IsMatch(e.Text);
  1303. }
  1304. private void BtnInsert_Initialized(object sender, EventArgs e)
  1305. {
  1306. this.BtnInsert.ContextMenu = null;
  1307. }
  1308. private void BtnInsert_Click(object sender, RoutedEventArgs e)
  1309. {
  1310. MenuInsert.PlacementTarget = this.BtnInsert;
  1311. MenuInsert.IsOpen = true;
  1312. }
  1313. private void ContextMenu_Loaded(object sender, RoutedEventArgs e)
  1314. {
  1315. var menu = sender as System.Windows.Controls.ContextMenu;
  1316. if (menu != null)
  1317. {
  1318. List<int> pages = GetSelectedItems();
  1319. if (pages.Count >= 2)
  1320. {
  1321. foreach (var item in menu.Items)
  1322. {
  1323. if (item is MenuItem menuItem)
  1324. {
  1325. if (menuItem.Tag == null)
  1326. {
  1327. continue;
  1328. }
  1329. //右键菜单 先按照230616的原型,后续原型改动在调整
  1330. if (viewModel.IsBOTAThumb == Visibility.Visible)
  1331. {
  1332. if (menuItem.Tag.ToString() == "Insert")
  1333. {
  1334. menuItem.Visibility = Visibility.Collapsed;
  1335. }
  1336. if (menuItem.Tag.ToString() == "Reverse")
  1337. {
  1338. menuItem.Visibility = Visibility.Collapsed;
  1339. }
  1340. if (menuItem.Tag.ToString() == "Split")
  1341. {
  1342. menuItem.Visibility = Visibility.Collapsed;
  1343. }
  1344. if (menuItem.Tag.ToString() == "Extract")
  1345. {
  1346. menuItem.Visibility = Visibility.Collapsed;
  1347. }
  1348. if (menuItem.Tag.ToString() == "Replace")
  1349. {
  1350. menuItem.Visibility = Visibility.Collapsed;
  1351. }
  1352. }
  1353. else
  1354. {
  1355. if (menuItem.Tag.ToString() == "Insert")
  1356. {
  1357. menuItem.Visibility = Visibility.Collapsed;
  1358. }
  1359. if (menuItem.Tag.ToString() == "Reverse")
  1360. {
  1361. menuItem.Visibility = Visibility.Visible;
  1362. }
  1363. if (menuItem.Tag.ToString() == "Split")
  1364. {
  1365. menuItem.Visibility = Visibility.Visible;
  1366. }
  1367. }
  1368. }
  1369. }
  1370. }
  1371. else
  1372. {
  1373. foreach (var item in menu.Items)
  1374. {
  1375. if (item is MenuItem menuItem)
  1376. {
  1377. if (menuItem.Tag == null)
  1378. {
  1379. continue;
  1380. }
  1381. if (viewModel.IsBOTAThumb == Visibility.Visible)
  1382. {
  1383. if (menuItem.Tag.ToString() == "Insert")
  1384. {
  1385. menuItem.Visibility = Visibility.Collapsed;
  1386. }
  1387. if (menuItem.Tag.ToString() == "Reverse")
  1388. {
  1389. menuItem.Visibility = Visibility.Collapsed;
  1390. }
  1391. if (menuItem.Tag.ToString() == "Split")
  1392. {
  1393. menuItem.Visibility = Visibility.Collapsed;
  1394. }
  1395. if (menuItem.Tag.ToString() == "Extract")
  1396. {
  1397. menuItem.Visibility = Visibility.Collapsed;
  1398. }
  1399. if (menuItem.Tag.ToString() == "Replace")
  1400. {
  1401. menuItem.Visibility = Visibility.Collapsed;
  1402. }
  1403. }
  1404. else
  1405. {
  1406. if (menuItem.Tag.ToString() == "Insert")
  1407. {
  1408. menuItem.Visibility = Visibility.Visible;
  1409. }
  1410. if (menuItem.Tag.ToString() == "Reverse")
  1411. {
  1412. menuItem.Visibility = Visibility.Collapsed;
  1413. }
  1414. if (menuItem.Tag.ToString() == "Split")
  1415. {
  1416. menuItem.Visibility = Visibility.Collapsed;
  1417. }
  1418. }
  1419. }
  1420. }
  1421. }
  1422. }
  1423. }
  1424. }
  1425. }