PageEditContent.xaml.cs 63 KB

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