AnnotToolContentViewModel.Command.cs 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755
  1. using ComPDFKit.Import;
  2. using ComPDFKit.PDFAnnotation;
  3. using ComPDFKit.PDFDocument;
  4. using ComPDFKit.PDFDocument.Action;
  5. using ComPDFKitViewer;
  6. using ComPDFKitViewer.AnnotEvent;
  7. using ComPDFKitViewer.PdfViewer;
  8. using PDF_Master.CustomControl;
  9. using PDF_Master.EventAggregators;
  10. using PDF_Master.Helper;
  11. using PDF_Master.Model.AnnotPanel;
  12. using PDF_Master.Model.FillAndSign;
  13. using PDF_Master.Properties;
  14. using PDF_Master.ViewModels.BOTA;
  15. using PDF_Master.ViewModels.PropertyPanel.AnnotPanel;
  16. using PDF_Master.ViewModels.Tools.AnnotManager;
  17. using PDF_Master.Views.BOTA;
  18. using PDFSettings;
  19. using Prism.Mvvm;
  20. using Prism.Regions;
  21. using System;
  22. using System.Collections.Generic;
  23. using System.Diagnostics;
  24. using System.Linq;
  25. using System.Windows;
  26. using System.Windows.Controls;
  27. using System.Windows.Controls.Primitives;
  28. using System.Windows.Input;
  29. using System.Windows.Markup;
  30. using System.Windows.Media;
  31. namespace PDF_Master.ViewModels.Tools
  32. {
  33. public sealed partial class AnnotToolContentViewModel : BindableBase, INavigationAware
  34. {
  35. #region 事件绑定和解绑
  36. private void BindingEvent()
  37. {
  38. //属性面板与注释工具栏绑定:属性面板的属性变化,会同步注释工具栏的属性值
  39. //比如在属性面板里更改注释颜色,会同时更新工具栏对应的工具颜色
  40. PropertyPanel.DataChanged -= AnnotPropertyPanel_DataChanged;
  41. PropertyPanel.DataChanged += AnnotPropertyPanel_DataChanged;
  42. PropertyPanel.AnnotTypeChanged -= AnnotPropertyPanel_AnnotTypeChanged;
  43. PropertyPanel.AnnotTypeChanged += AnnotPropertyPanel_AnnotTypeChanged;
  44. //快捷键
  45. KeyEventsHelper.KeyDown -= ShortCut_KeyDown;
  46. KeyEventsHelper.KeyDown += ShortCut_KeyDown;
  47. }
  48. private void UnBindingEvent()
  49. {
  50. PropertyPanel.DataChanged -= AnnotPropertyPanel_DataChanged;
  51. PropertyPanel.AnnotTypeChanged -= AnnotPropertyPanel_AnnotTypeChanged;
  52. //快捷盘解绑
  53. KeyEventsHelper.KeyDown -= ShortCut_KeyDown;
  54. }
  55. private void BindingPDFViewerHandler()
  56. {
  57. //来自PDFViewer的响应事件
  58. if (PDFViewer != null)
  59. {
  60. PDFViewer.AnnotEditHandler -= PDFViewer_AnnotEditHandler;
  61. PDFViewer.AnnotEditHandler += PDFViewer_AnnotEditHandler;
  62. PDFViewer.AnnotActiveHandler -= PDFViewer_AnnotActiveHandler;
  63. PDFViewer.AnnotActiveHandler += PDFViewer_AnnotActiveHandler;
  64. PDFViewer.AnnotCommandHandler -= PDFViewer_AnnotCommandHandler;
  65. PDFViewer.AnnotCommandHandler += PDFViewer_AnnotCommandHandler;
  66. PDFViewer.SnapshotCommandHandler -= PDFViewer_SnapshotCommandHandler;
  67. PDFViewer.SnapshotCommandHandler += PDFViewer_SnapshotCommandHandler;
  68. PDFViewer.PDFActionHandler -= PDFViewer_PDFActionHandler;
  69. PDFViewer.PDFActionHandler += PDFViewer_PDFActionHandler;
  70. PDFViewer.AnnotHoverHandler -= PDFViewer_AnnotHoverHandler;
  71. PDFViewer.AnnotHoverHandler += PDFViewer_AnnotHoverHandler;
  72. PDFViewer.PreviewMouseLeftButtonDown -= PDFViewer_PreviewMouseLeftButtonDown;
  73. PDFViewer.PreviewMouseLeftButtonDown += PDFViewer_PreviewMouseLeftButtonDown;
  74. CommandManager.AddPreviewExecutedHandler(PDFViewer, PreviewExcutePDFViewer);
  75. }
  76. }
  77. //判断
  78. private void PreviewExcutePDFViewer(object sender, ExecutedRoutedEventArgs e)
  79. {
  80. if (e.Command == ApplicationCommands.Paste)
  81. {
  82. IsPasteShape = true;
  83. ShapeNames.Clear();
  84. Trace.WriteLine("几次" + 1);
  85. var items = PDFViewer.GetCopyAnnotData();
  86. foreach (var item in items)
  87. {
  88. bool IsShape = false;
  89. if (item is FreehandAnnotArgs)
  90. {
  91. foreach (var point in viewContentViewModel.FillAndSign)
  92. {
  93. if ((item as FreehandAnnotArgs).PageIndex == point.PageIndex && (item as FreehandAnnotArgs).AnnotIndex == point.AnnotIndex)
  94. {
  95. ShapeNames.Add(point.Shape);
  96. Trace.WriteLine("woshi什么" + point.Shape);
  97. IsShape = true;
  98. continue;
  99. }
  100. }
  101. if (!IsShape)
  102. {
  103. ShapeNames.Add("Annot");
  104. Trace.WriteLine("woshi什么" + "Freehand");
  105. }
  106. }
  107. else
  108. {
  109. ShapeNames.Add("Annot");
  110. }
  111. }
  112. }
  113. if (e.Command == ApplicationCommands.Copy)
  114. {
  115. }
  116. }
  117. private void UnBindingPDFViewerHandler()
  118. {
  119. if (PDFViewer != null)
  120. {
  121. PDFViewer.AnnotEditHandler -= PDFViewer_AnnotEditHandler;
  122. PDFViewer.AnnotActiveHandler -= PDFViewer_AnnotActiveHandler;
  123. PDFViewer.AnnotCommandHandler -= PDFViewer_AnnotCommandHandler;
  124. PDFViewer.SnapshotCommandHandler -= PDFViewer_SnapshotCommandHandler;
  125. PDFViewer.PDFActionHandler -= PDFViewer_PDFActionHandler;
  126. PDFViewer.AnnotHoverHandler -= PDFViewer_AnnotHoverHandler;
  127. PDFViewer.PreviewMouseLeftButtonDown -= PDFViewer_PreviewMouseLeftButtonDown;
  128. }
  129. }
  130. #endregion 事件绑定和解绑
  131. #region 与触发事件调用相关的函数
  132. //鼠标左键双击注释
  133. private void PDFViewer_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  134. {
  135. if (e.ClickCount == 1)
  136. {
  137. //不禁止取消选中注释
  138. PDFViewer.DisableClearSelectAnnot(false);
  139. //PropertyPanel.IsSharpAnnotSelected = true;
  140. //PropertyPanel.IsFreeHandSelected = true;
  141. //PDFViewer.ClearSelectAnnots();
  142. //BOTA所有列表都需要响应 单击阅读页取消多选
  143. if (viewContentViewModel.OpenBOTA == true)
  144. {
  145. this.events.GetEvent<CleanSelectAllEvent>().Publish(new CleanSelectAllArgs() { Unicode = App.mainWindowViewModel.SelectedItem.Unicode, IsCleanSelectAll = true });
  146. }
  147. }
  148. if (e.ClickCount == 2)
  149. {
  150. if (CurrentSelectedAnnot != null)
  151. {
  152. var type = CurrentSelectedAnnot.EventType;
  153. if (type != AnnotArgsType.AnnotSticky && type != AnnotArgsType.AnnotFreeText &&
  154. type != AnnotArgsType.AnnotHighlight && type != AnnotArgsType.AnnotUnderline
  155. && type != AnnotArgsType.AnnotStrikeout && type != AnnotArgsType.AnnotLink)
  156. {
  157. int dpi = DpiHelpers.Dpi;
  158. var rect = CurrentSelectedAnnot.ClientRect;
  159. rect = new Rect(
  160. rect.Left * PDFViewer.ZoomFactor,
  161. rect.Top * PDFViewer.ZoomFactor,
  162. rect.Width * PDFViewer.ZoomFactor,
  163. rect.Height * PDFViewer.ZoomFactor);
  164. var ui = PDFViewer.Parent as ContentControl;
  165. if (ui != null)
  166. {
  167. var point = e.GetPosition(ui);
  168. int pageIndex = 0;
  169. Point pagePoint = new Point(0, 0);
  170. PDFViewer.ConvertViewPointToPage(point, out pageIndex, out pagePoint);
  171. if (pagePoint.X >= rect.Left && pagePoint.X <= rect.Right && pagePoint.Y >= rect.Top && pagePoint.Y <= rect.Bottom)
  172. PopAnnotNoteText(CurrentSelectedAnnot);
  173. }
  174. }
  175. if (type == AnnotArgsType.AnnotSticky)
  176. {
  177. (CurrentSelectedAnnot as StickyAnnotArgs).PopupEditWnd();
  178. }
  179. }
  180. }
  181. }
  182. //超链接跳转
  183. private void PDFViewer_PDFActionHandler(object sender, ComPDFKit.PDFDocument.Action.CPDFAction action)
  184. {
  185. if (action == null)
  186. {
  187. return;
  188. }
  189. switch (action.ActionType)
  190. {
  191. case C_ACTION_TYPE.ACTION_TYPE_GOTO:
  192. if (PDFViewer != null)
  193. {
  194. CPDFGoToAction gotoAction = action as CPDFGoToAction;
  195. CPDFDestination dest = gotoAction.GetDestination(PDFViewer.Document);
  196. if (dest != null)
  197. {
  198. PDFViewer.GoToPage(dest.PageIndex, new System.Windows.Point(0, 0));
  199. }
  200. }
  201. break;
  202. case C_ACTION_TYPE.ACTION_TYPE_URI:
  203. {
  204. CPDFUriAction uriAction = action as CPDFUriAction;
  205. string uri = uriAction.GetUri();
  206. try
  207. {
  208. if (!string.IsNullOrEmpty(uri))
  209. {
  210. Process.Start(uri);
  211. }
  212. }
  213. catch (Exception ex)
  214. {
  215. }
  216. }
  217. break;
  218. }
  219. }
  220. private void GetSelectedAnnots(AnnotAttribEvent e)
  221. {
  222. var annot = e.AnnotItemsList[0];
  223. switch (annot.EventType)
  224. {
  225. case AnnotArgsType.AnnotHighlight:
  226. GetHighLight(e.AnnotItemsList);
  227. break;
  228. case AnnotArgsType.AnnotUnderline:
  229. GetUnderLine(e.AnnotItemsList);
  230. break;
  231. case AnnotArgsType.AnnotStrikeout:
  232. GetStrikeout(e.AnnotItemsList);
  233. break;
  234. case AnnotArgsType.AnnotSquiggly:
  235. GetSquiggly(e.AnnotItemsList);
  236. break;
  237. case AnnotArgsType.AnnotFreehand:
  238. GetFreehand(e.AnnotItemsList);
  239. break;
  240. case AnnotArgsType.AnnotFreeText:
  241. GetFreetext(e.AnnotItemsList);
  242. break;
  243. case AnnotArgsType.AnnotSquare:
  244. GetRect(e.AnnotItemsList);
  245. break;
  246. case AnnotArgsType.AnnotCircle:
  247. GetCircle(e.AnnotItemsList);
  248. break;
  249. case AnnotArgsType.AnnotLine:
  250. bool isLine = true;
  251. if (e.Attribs.ContainsKey(AnnotAttrib.LineStart))
  252. {
  253. if ((C_LINE_TYPE)e.Attribs[AnnotAttrib.LineStart] != C_LINE_TYPE.LINETYPE_UNKNOWN && (C_LINE_TYPE)e.Attribs[AnnotAttrib.LineStart] != C_LINE_TYPE.LINETYPE_NONE)
  254. {
  255. isLine = false;
  256. }
  257. }
  258. if (e.Attribs.ContainsKey(AnnotAttrib.LineEnd))
  259. {
  260. if ((C_LINE_TYPE)e.Attribs[AnnotAttrib.LineEnd] != C_LINE_TYPE.LINETYPE_UNKNOWN && (C_LINE_TYPE)e.Attribs[AnnotAttrib.LineEnd] != C_LINE_TYPE.LINETYPE_NONE)
  261. {
  262. isLine = false;
  263. }
  264. }
  265. if (isLine)
  266. GetArrowLine("Line", e.AnnotItemsList);
  267. else
  268. GetArrowLine("Arrow", e.AnnotItemsList);
  269. break;
  270. case AnnotArgsType.AnnotLink:
  271. //viewContentViewModel.IsCreateLink = false;
  272. //e.IsAnnotCreateReset= true;
  273. if (StrAnnotToolChecked == "Link")
  274. {
  275. PropertyPanel.IsAddLink = false;
  276. }
  277. GetLink(e.AnnotItemsList, e);
  278. break;
  279. case AnnotArgsType.AnnotSticky:
  280. GetStickyNote(e.AnnotItemsList);
  281. customStickyPopup.GetCurrentAnnot = e.AnnotItemsList[0] as StickyAnnotArgs;
  282. customStickyPopup.GetPDFViewer = PDFViewer;
  283. if (e.IsAnnotCreateReset)
  284. {
  285. PropertyPanel.annot = e.AnnotItemsList[0];
  286. var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
  287. PropertyPanel.AnnotEvents = null;
  288. PropertyPanel.AnnotEvent = AnnotEvent;
  289. PropertyPanel.annotlists = e.AnnotItemsList;
  290. }
  291. break;
  292. case AnnotArgsType.AnnotStamp:
  293. if (e.IsAnnotCreateReset == false)
  294. {
  295. GetStamp();
  296. }
  297. break;
  298. }
  299. }
  300. /// <summary>
  301. /// 选中注释 区分签名、图章、手绘
  302. /// </summary>
  303. /// <param name="annotlist"></param>
  304. private void SelectedSignature(List<AnnotHandlerEventArgs> annotlist)
  305. {
  306. if (annotlist == null || annotlist.Count == 0)
  307. return;
  308. var annot = annotlist[0];
  309. if (annot.EventType != AnnotArgsType.AnnotStamp && annot.EventType != AnnotArgsType.AnnotFreehand)
  310. return;
  311. if (annot.PageIndex < 0 || annot.AnnotIndex < 0)
  312. return;
  313. var signAnnot = viewContentViewModel.AnnotSignatures.FirstOrDefault(temp => temp.Item1 == annot.PageIndex && temp.Item2 == annot.AnnotIndex);
  314. if (signAnnot == null)
  315. {
  316. //var key = ToolExpandDict.FirstOrDefault(q => q.Value == annot.EventType);
  317. //if (!string.IsNullOrEmpty(StrAnnotToolChecked))
  318. // StrAnnotToolChecked = key.Key.ToString();
  319. //if (annot.EventType == AnnotArgsType.AnnotStamp)
  320. //{
  321. // StrAnnotToolChecked = "Stamp";
  322. //}
  323. //else
  324. //{
  325. // StrAnnotToolChecked = "";
  326. //}
  327. }
  328. else
  329. {
  330. if (string.IsNullOrEmpty(StrAnnotToolChecked))
  331. {
  332. viewContentViewModel.SelectedPrpoertyPanel("PropertyPanelContent", null);
  333. //GetSignature();
  334. //StrAnnotToolChecked = "Signature";
  335. }
  336. }
  337. }
  338. private void AddAnnotSignature(AnnotHandlerEventArgs annot)
  339. {
  340. if ((annot.EventType != AnnotArgsType.AnnotStamp && annot.EventType != AnnotArgsType.AnnotFreehand) ||
  341. (annot.PageIndex < 0 || annot.AnnotIndex < 0)) return;
  342. if (StrAnnotToolChecked == "Signature")
  343. {
  344. if (viewContentViewModel.AnnotSignatures == null)
  345. viewContentViewModel.AnnotSignatures = new List<Tuple<int, int>>();
  346. var signAnnot = viewContentViewModel.AnnotSignatures.FirstOrDefault(temp => temp.Item1 == annot.PageIndex && temp.Item2 == annot.AnnotIndex);
  347. if (signAnnot == null)
  348. {
  349. viewContentViewModel.AnnotSignatures.Add(new Tuple<int, int>(annot.PageIndex, annot.AnnotIndex));
  350. }
  351. }
  352. }
  353. #endregion 与触发事件调用相关的函数
  354. #region PDFViewer事件
  355. private AnnotHandlerEventArgs CurrentSelectedAnnot = null;
  356. private bool isShowPropertyPanel = false;
  357. //选中和非选中注释
  358. private void PDFViewer_AnnotActiveHandler(object sender, AnnotAttribEvent e)
  359. {
  360. CurrentSelectedAnnot = null;
  361. if (viewContentViewModel.CurrentBar != "TabItemAnnotation")
  362. {
  363. //viewContentViewModel.SelectedPrpoertyPanel("PropertyPanelContent", null);
  364. return;
  365. }
  366. if (e == null)
  367. {
  368. //PDFViewer.DisableClearSelectAnnot(false);
  369. //PropertyPanel.IsSharpAnnotSelected = true;
  370. //PropertyPanel.IsFreeHandSelected = true;
  371. if (string.IsNullOrWhiteSpace(StrAnnotToolChecked))
  372. {
  373. //PDFViewer.ClearSelectAnnots();
  374. PropertyPanel.annot = null;
  375. PropertyPanel.AnnotEvents = null;
  376. PropertyPanel.AnnotEvent = null;
  377. PropertyPanel.annotlists = null;
  378. if (PropertyPanel.IsAddLink == false)
  379. {
  380. viewContentViewModel.SelectedPrpoertyPanel("PropertyPanelContent", null);
  381. }
  382. //PDFViewer.SetMouseMode(MouseModes.PanTool);
  383. //HandToolIsCheckedEvent(false);
  384. return;
  385. }
  386. else
  387. {
  388. if (StrAnnotToolChecked == "Rect" && PropertyPanel.IsSelectedTextAddShape == false)
  389. {
  390. AnnotHandlerEventArgs annotArgs = null;
  391. //此处不能用这个方法更新创建注释的属性 会导致死循环
  392. //选择文字 点击矩形 会导致死循环
  393. // FindAnnotTypeKey(StrAnnotToolChecked, ref annotArgs);
  394. PropertyPanel.annot = null;
  395. PropertyPanel.AnnotEvents = null;
  396. PropertyPanel.AnnotEvent = null;
  397. PropertyPanel.annotlists = null;
  398. switch (PropertyPanel.SharpsAnnot)
  399. {
  400. case "Rect":
  401. annotArgs = GetRect();
  402. break;
  403. case "Circle":
  404. annotArgs = GetCircle();
  405. break;
  406. case "Arrow":
  407. annotArgs = GetArrowLine("Arrow");
  408. break;
  409. case "Line":
  410. annotArgs = GetArrowLine("Line");
  411. break;
  412. }
  413. return;
  414. }
  415. }
  416. }
  417. if (e != null)
  418. {
  419. if (e.IsMouseRightActive)
  420. {
  421. if (string.IsNullOrEmpty(StrAnnotToolChecked))
  422. {
  423. ShowPropertyPanel(false);
  424. return;
  425. }
  426. }
  427. var annot = e.AnnotItemsList[0];
  428. if (annot != null)
  429. {
  430. if (e.AnnotItemsList.Count == 1)
  431. {
  432. //IsAnnotCreateReset:是否为创建注释的状态
  433. if (e.IsAnnotCreateReset == false)
  434. {
  435. CurrentSelectedAnnot = annot;
  436. //未选注释工具-形状注释,选中形状注释,属性面板不显示(矩形、圆、线、箭头)
  437. if (StrAnnotToolChecked != "Rect"
  438. && (annot.EventType == AnnotArgsType.AnnotSquare ||
  439. annot.EventType == AnnotArgsType.AnnotCircle ||
  440. annot.EventType == AnnotArgsType.AnnotLine))
  441. {
  442. PropertyPanel.IsSharpAnnotSelected = false;
  443. }
  444. else
  445. {
  446. PropertyPanel.IsSharpAnnotSelected = true;
  447. }
  448. if (StrAnnotToolChecked != "Freehand" && annot.EventType == AnnotArgsType.AnnotFreehand)
  449. {
  450. PropertyPanel.IsFreeHandSelected = false;
  451. }
  452. else
  453. {
  454. PropertyPanel.IsFreeHandSelected = true;
  455. }
  456. isShowPropertyPanel = viewContentViewModel.IsPropertyOpen;
  457. GetSelectedAnnots(e);
  458. SelectedSignature(e.AnnotItemsList);
  459. if (Settings.Default.AppProperties.InitialVIew.AutoExpandProperty
  460. && annot.EventType != AnnotArgsType.AnnotStamp && StrAnnotToolChecked != "Signature"
  461. && annot.EventType != AnnotArgsType.AnnotLink)
  462. {
  463. var signAnnot = viewContentViewModel.AnnotSignatures.FirstOrDefault(temp => temp.Item1 == annot.PageIndex && temp.Item2 == annot.AnnotIndex);
  464. if (signAnnot == null)
  465. {
  466. if (e.IsMouseRightActive)
  467. {
  468. ShowPropertyPanel(isShowPropertyPanel);
  469. }
  470. else
  471. {
  472. ShowPropertyPanel(true);
  473. }
  474. }
  475. }
  476. else if (StrAnnotToolChecked == "Signature")
  477. {
  478. GetSignature();
  479. }
  480. //注释列表同步选中
  481. SelectedBotaAnnotationList(e);
  482. }
  483. else
  484. {
  485. if (!string.IsNullOrEmpty(StrAnnotToolChecked) || PropertyPanel.IsAddLink == true)
  486. {
  487. GetSelectedAnnots(e);
  488. PDFViewer.SetToolParam(annot);
  489. }
  490. else
  491. {
  492. if (IsNoSelectMenu)
  493. {
  494. return;
  495. }
  496. PropertyPanel.annot = null;
  497. PropertyPanel.AnnotEvents = null;
  498. PropertyPanel.AnnotEvent = null;
  499. PropertyPanel.annotlists = null;
  500. PDFViewer.SetMouseMode(MouseModes.PanTool);
  501. HandToolIsCheckedEvent(false);
  502. viewContentViewModel.SelectedPrpoertyPanel("PropertyPanelContent", null);
  503. }
  504. //switch (annot.EventType)
  505. //{
  506. // case AnnotArgsType.AnnotFreeText:
  507. // annot = GetFreetext(e.AnnotItemsList);
  508. // PDFViewer.SetToolParam(annot);
  509. // break;
  510. // case AnnotArgsType.AnnotSticky:
  511. // customStickyPopup.GetCurrentAnnot = e.AnnotItemsList[0] as StickyAnnotArgs;
  512. // customStickyPopup.GetPDFViewer = PDFViewer;
  513. // propertyPanel.annot = e.AnnotItemsList[0];
  514. // var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
  515. // propertyPanel.AnnotEvents = null;
  516. // propertyPanel.AnnotEvent = AnnotEvent;
  517. // propertyPanel.annotlists = e.AnnotItemsList;
  518. // break;
  519. // case AnnotArgsType.AnnotLink:
  520. // //viewContentViewModel.IsCreateLink = false;
  521. // GetLink(e.AnnotItemsList, e);
  522. // PDFViewer.SetToolParam(annot);
  523. // break;
  524. //}
  525. #region //TODO: 修改注释后,会作用到之后添加的注释中。因此先把此逻辑“创建注释后,会自动回到默认值”注释掉
  526. //注释代码原因:设计已经重新调整逻辑:所有注释创建后,编辑属性,所有属性会作用于下次创建的注释中。
  527. //if (annot.EventType != AnnotArgsType.AnnotStrikeout &&
  528. //annot.EventType != AnnotArgsType.AnnotUnderline &&
  529. //annot.EventType != AnnotArgsType.AnnotHighlight &&
  530. //annot.EventType != AnnotArgsType.AnnotSquiggly &&
  531. //annot.EventType != AnnotArgsType.AnnotLink &&
  532. //annot.EventType != AnnotArgsType.AnnotFreehand &&
  533. //annot.EventType != AnnotArgsType.AnnotSticky &&
  534. //)
  535. //{
  536. // if (ToolExpandDict.ContainsValue(e.AnnotItemsList[0].EventType))
  537. // {
  538. // var strLineAnnotTag = "";
  539. // if (e.AnnotItemsList[0] is LineAnnotArgs)
  540. // {
  541. // var lineAnnot = e.AnnotItemsList[0] as LineAnnotArgs;
  542. // if (lineAnnot.HeadLineType == C_LINE_TYPE.LINETYPE_NONE && lineAnnot.TailLineType == C_LINE_TYPE.LINETYPE_NONE)
  543. // {
  544. // strLineAnnotTag = "Line";
  545. // }
  546. // else
  547. // {
  548. // strLineAnnotTag = "Arrow";
  549. // }
  550. // }
  551. // foreach (var item in ToolExpandDict)
  552. // {
  553. // if (item.Value == e.AnnotItemsList[0].EventType)
  554. // {
  555. // annot = null;//新建注释时,回到默认值
  556. // if (string.IsNullOrEmpty(strLineAnnotTag))
  557. // {
  558. // FindAnnotTypeKey(item.Key, ref annot);
  559. // break;
  560. // }
  561. // else
  562. // {
  563. // if (strLineAnnotTag == item.Key)
  564. // {
  565. // FindAnnotTypeKey(item.Key, ref annot);
  566. // break;
  567. // }
  568. // }
  569. // }
  570. // }
  571. // PDFViewer.SetToolParam(annot);
  572. // }
  573. //}
  574. //设计重新调整,阅读页空白处,右键菜单,添加链接需要显示,其他和pro mac一样的效果,不显示属性栏
  575. //if (isRightMenuAddAnnot && annot.EventType!=AnnotArgsType.AnnotLink)
  576. //{
  577. // ShowPropertyPanel(false);
  578. //}
  579. //else
  580. //{
  581. // ShowPropertyPanel();
  582. //}
  583. #endregion //TODO: 修改注释后,会作用到之后添加的注释中。因此先把此逻辑“创建注释后,会自动回到默认值”注释掉
  584. }
  585. }
  586. else
  587. {
  588. //框选注释
  589. PropertyPanel.annotlists = e.AnnotItemsList;
  590. bool isDifferentAnnotTyle = AnnotTransfer.IsDifferentTypeAnnots(e.AnnotItemsList);
  591. if (isDifferentAnnotTyle)
  592. viewContentViewModel.SelectedPrpoertyPanel("PropertyPanelContent", null);
  593. else
  594. GetSelectedAnnots(e);
  595. }
  596. }
  597. }
  598. }
  599. /// <summary>
  600. /// 注释列表同步选中
  601. /// </summary>
  602. /// <param name="e"></param>
  603. private void SelectedBotaAnnotationList(AnnotAttribEvent e)
  604. {
  605. var list = e.GetPageAnnotsIndex();
  606. bool isTabItemAnnotation = IsBOTATabItemShow(out BOTAContentViewModel bOTAContentViewModel, out BOTAContent bOTAContent, "TabItemAnnotation");
  607. //if (viewContentViewModel.OpenBOTA == false || isTabItemAnnotation == false || bOTAContent.TabItemAnnotation.IsSelected == false)
  608. //{
  609. // viewContentViewModel.OpenBOTA = true;
  610. // bOTAContent.TabItemAnnotation.IsSelected = true;
  611. //}
  612. if (viewContentViewModel.OpenBOTA == true && isTabItemAnnotation == true /*&& bOTAContent.TabItemAnnotation.IsSelected == true*/ && list != null && list.Count > 0)
  613. {
  614. if (list.Keys.Count == 0)
  615. {
  616. return;
  617. }
  618. var pageindex = new List<int>(list.Keys);
  619. List<int> annotes = new List<int>();
  620. list.TryGetValue(pageindex[0], out annotes);
  621. int annoteindex = annotes[0];
  622. AnnotationContentViewModel viewModel = GetAnnotationContentViewModel(bOTAContentViewModel, out AnnotationContent annotation);
  623. if (viewModel != null)
  624. {
  625. viewModel.ScrollToAnnot(pageindex[0], annoteindex, annotation.AnnotationList);
  626. }
  627. }
  628. }
  629. //在注释工具的状态下,右键菜单
  630. private void PDFViewer_AnnotCommandHandler(object sender, AnnotCommandArgs e)
  631. {
  632. if (e.AnnotEventArgsList == null || (PDFViewer != null && PDFViewer.MouseMode == MouseModes.FormEditTool))
  633. return;
  634. if ((UIElement)sender != null)
  635. {
  636. //绑定命令执行前的拦截事件,对于未解密权限的文档进行复制限制
  637. CommandManager.AddPreviewExecutedHandler((UIElement)sender, PreviewExcute);
  638. }
  639. switch (e.CommandType)
  640. {
  641. case CommandType.Context:
  642. if (e.AnnotEventArgsList.Count > 0)
  643. {
  644. if (App.mainWindowViewModel.SelectedItem.IsInReadctonMode && e.AnnotEventArgsList[0].EventType == AnnotArgsType.AnnotRedaction)
  645. {
  646. //绑定标记密文处右键菜单
  647. events.GetEvent<RedactionCommandEvent>().Publish(new RedactionCommandEventArgs() { UniCode = App.mainWindowViewModel.SelectedItem.Unicode, Sender = sender, args = e });
  648. }
  649. else
  650. {
  651. if (e.AnnotEventArgsList.Count == 1)
  652. {
  653. var selectedAnnot = e.AnnotEventArgsList[0];
  654. PopMenuCheckedLineDash(selectedAnnot);
  655. PopMenuCheckedFontFamily(selectedAnnot);
  656. PopMenuCheckedTextAglin(selectedAnnot);
  657. switch (selectedAnnot.EventType)
  658. {
  659. case AnnotArgsType.AnnotHighlight:
  660. case AnnotArgsType.AnnotUnderline:
  661. case AnnotArgsType.AnnotStrikeout:
  662. case AnnotArgsType.AnnotSquiggly:
  663. if (selectedAnnot.EventType == AnnotArgsType.AnnotHighlight)
  664. {
  665. colorContent.ItemSource = AnnotColorList.GetColorList(ColorSelectorType.Highlight);
  666. }
  667. else
  668. {
  669. colorContent.ItemSource = AnnotColorList.GetColorList(ColorSelectorType.Border);
  670. }
  671. e.PopupMenu = HightAnnotPopMenu.OpenMenu(selectedAnnot, sender);
  672. break;
  673. case AnnotArgsType.AnnotFreehand:
  674. e.PopupMenu = FreeHandAnnotPopMenu.OpenMenu(selectedAnnot, sender);
  675. break;
  676. case AnnotArgsType.AnnotFreeText:
  677. e.PopupMenu = FreeTextAnnotPopMenu.OpenMenu(selectedAnnot, sender);
  678. break;
  679. case AnnotArgsType.AnnotSticky:
  680. e.PopupMenu = StrickNoteAnnotPopMenu.OpenMenu(selectedAnnot, sender);
  681. break;
  682. case AnnotArgsType.AnnotSquare:
  683. case AnnotArgsType.AnnotCircle:
  684. ShapeAnnotPopMenu.SetVisual("ShapeDirect", false);
  685. ShapeAnnotPopMenu.SetVisual("ShapeFillColor", true);
  686. e.PopupMenu = ShapeAnnotPopMenu.OpenMenu(selectedAnnot, sender);
  687. break;
  688. case AnnotArgsType.AnnotLine:
  689. ShapeAnnotPopMenu.SetVisual("ShapeFillColor", false);
  690. ShapeAnnotPopMenu.SetVisual("ShapeDirect", true);
  691. e.PopupMenu = ShapeAnnotPopMenu.OpenMenu(selectedAnnot, sender);
  692. break;
  693. case AnnotArgsType.AnnotLink:
  694. e.PopupMenu = LinkAnnotPopMenu.OpenMenu(selectedAnnot, sender);
  695. break;
  696. case AnnotArgsType.AnnotStamp:
  697. e.PopupMenu = StampAnnotPopMenu.OpenMenu(selectedAnnot, sender);
  698. break;
  699. }
  700. }
  701. else
  702. {
  703. bool isHigh = true;//是否为高亮
  704. foreach (var item in e.AnnotEventArgsList)
  705. {
  706. if (AnnotTransfer.IsHightAnnot(item) == false)
  707. {
  708. isHigh = false;
  709. break;
  710. }
  711. }
  712. MultiAnnotPopMenu.SetVisual("MultiCopy", !isHigh);
  713. MultiAnnotPopMenu.SetVisual("MultiCut", !isHigh);
  714. e.PopupMenu = MultiAnnotPopMenu.OpenMenu(e.AnnotEventArgsList, sender);
  715. }
  716. }
  717. if (e.PopupMenu != null)
  718. {
  719. e.Handle = true;
  720. }
  721. }
  722. else
  723. {
  724. if (e.PressOnSelectedText || e.CommandTarget == TargetType.ImageSelection)
  725. {
  726. e.PopupMenu = SelectedTextOrImageContextMenu(sender, e);
  727. if (e.PopupMenu != null)
  728. {
  729. e.Handle = true;
  730. }
  731. }
  732. else
  733. {
  734. e.PopupMenu = ViewerContextMenu(sender);
  735. if (e.PopupMenu != null)
  736. {
  737. e.Handle = true;
  738. }
  739. }
  740. }
  741. break;
  742. }
  743. }
  744. private void PreviewExcute(object sender, ExecutedRoutedEventArgs e)
  745. {
  746. if (e.Command == ApplicationCommands.Copy)
  747. {
  748. VerifyPasswordResult result = SecurityHelper.VerifyPasswordForSelectedPermissions(PDFViewer.Document, Model.Dialog.ToolsDialogs.SaftyDialogs.EnumPermissionsSet.StatusAllowsCopying, dialogs);
  749. if (result.IsDiscryptied)
  750. {
  751. if (result.Password != null)
  752. {
  753. string filePath = PDFViewer.Document.FilePath;
  754. var unlockresult = PDFViewer.Document.CheckOwnerPassword(result.Password);
  755. }
  756. }
  757. else
  758. {
  759. e.Handled = true;
  760. }
  761. }
  762. }
  763. /// <summary>
  764. /// 右键菜单,选中字体样式按钮状态
  765. /// </summary>
  766. /// <param name="annot"></param>
  767. private void PopMenuCheckedFontFamily(AnnotHandlerEventArgs annot)
  768. {
  769. if (annot != null)
  770. {
  771. if (annot.EventType == AnnotArgsType.AnnotFreeText)
  772. {
  773. var freeText = annot as FreeTextAnnotArgs;
  774. string fontFamily = freeText.FontFamily.ToString();
  775. if (fontFamily == "Arial")
  776. {
  777. fontFamily = "Helvetica";
  778. }
  779. if (fontFamily == "Courier New")
  780. {
  781. fontFamily = "Courier";
  782. }
  783. if (fontFamily == "Times New Roman")
  784. {
  785. fontFamily = "Times";
  786. }
  787. FreeTextAnnotPopMenu.SetIsChecked(fontFamily, true);
  788. }
  789. }
  790. }
  791. /// <summary>
  792. /// 右键菜单,选中文本内容对齐按钮状态
  793. /// </summary>
  794. /// <param name="annot"></param>
  795. private void PopMenuCheckedTextAglin(AnnotHandlerEventArgs annot)
  796. {
  797. if (annot != null)
  798. {
  799. if (annot.EventType == AnnotArgsType.AnnotFreeText)
  800. {
  801. var freeText = annot as FreeTextAnnotArgs;
  802. switch (freeText.Align)
  803. {
  804. case TextAlignment.Left:
  805. FreeTextAnnotPopMenu.SetIsChecked("FreeTextAglinLeft", true);
  806. break;
  807. case TextAlignment.Center:
  808. FreeTextAnnotPopMenu.SetIsChecked("FreeTextAglinCenter", true);
  809. break;
  810. case TextAlignment.Right:
  811. FreeTextAnnotPopMenu.SetIsChecked("FreeTextAglinRight", true);
  812. break;
  813. case TextAlignment.Justify:
  814. FreeTextAnnotPopMenu.SetIsChecked("FreeTextAglinJustify", true);
  815. break;
  816. default:
  817. FreeTextAnnotPopMenu.SetIsChecked("FreeTextAglinLeft", false);
  818. FreeTextAnnotPopMenu.SetIsChecked("FreeTextAglinCenter", false);
  819. FreeTextAnnotPopMenu.SetIsChecked("FreeTextAglinRight", false);
  820. FreeTextAnnotPopMenu.SetIsChecked("FreeTextAglinJustify", false);
  821. break;
  822. }
  823. }
  824. }
  825. }
  826. //右键菜单,选中虚实线按钮状态
  827. private void PopMenuCheckedLineDash(AnnotHandlerEventArgs annot)
  828. {
  829. if (annot != null)
  830. {
  831. bool isSolidLineDash = true;
  832. if (annot.EventType == AnnotArgsType.AnnotFreehand)
  833. {
  834. var freeHand = annot as FreehandAnnotArgs;
  835. isSolidLineDash = AnnotTransfer.IsSolidStyle(freeHand.LineDash);
  836. FreeHandAnnotPopMenu.SetIsChecked(isSolidLineDash ? "FreeHandSolid" : "FreeHandDash", true);
  837. }
  838. else if (annot.EventType == AnnotArgsType.AnnotSquare)
  839. {
  840. var square = annot as SquareAnnotArgs;
  841. isSolidLineDash = AnnotTransfer.IsSolidStyle(square.LineDash);
  842. ShapeAnnotPopMenu.SetIsChecked(isSolidLineDash ? "ShapeSolid" : "ShapeDash", true);
  843. }
  844. else if (annot.EventType == AnnotArgsType.AnnotCircle)
  845. {
  846. var circle = annot as CircleAnnotArgs;
  847. isSolidLineDash = AnnotTransfer.IsSolidStyle(circle.LineDash);
  848. ShapeAnnotPopMenu.SetIsChecked(isSolidLineDash ? "ShapeSolid" : "ShapeDash", true);
  849. }
  850. else if (annot.EventType == AnnotArgsType.AnnotLine)
  851. {
  852. var line = annot as LineAnnotArgs;
  853. isSolidLineDash = AnnotTransfer.IsSolidStyle(line.LineDash);
  854. ShapeAnnotPopMenu.SetIsChecked(isSolidLineDash ? "ShapeSolid" : "ShapeDash", true);
  855. }
  856. }
  857. }
  858. /// <summary>
  859. /// 内容选择工具
  860. /// </summary>
  861. /// <param name="sender"></param>
  862. /// <param name="e"></param>
  863. private void PDFViewer_SnapshotCommandHandler(object sender, SnapshotCommandArgs e)
  864. {
  865. SnapshotEditToolArgs snapToolArgs = new SnapshotEditToolArgs();
  866. if (PDFViewer.ToolManager.CurrentAnnotArgs is SnapshotEditToolArgs)
  867. {
  868. snapToolArgs = (SnapshotEditToolArgs)PDFViewer.ToolManager.CurrentAnnotArgs;
  869. SnapshotEditMenuViewModel.SnapToolArgs = snapToolArgs;
  870. SnapshotEditMenuViewModel.PDFViewer = PDFViewer;
  871. SnapshotEditMenuViewModel.areaCropPageUndoManager = new AreaCropPageUndoManager(PDFViewer);
  872. SnapshotEditMenuViewModel.SnapToolEvent -= SnapshotEditMenuViewModel_SnapToolEvent; ;
  873. SnapshotEditMenuViewModel.SnapToolEvent += SnapshotEditMenuViewModel_SnapToolEvent;
  874. var popMenu = App.Current.FindResource("SnapshotContextMenu") as ContextMenu;
  875. if (e.HitSnapshotTool && e.SnapshotRect.Width > 0 && e.SnapshotRect.Height > 0)
  876. {
  877. e.PopupMenu = popMenu;
  878. e.Handle = true;
  879. if (popMenu != null && popMenu.Items.Count == 5)
  880. {
  881. //复制
  882. MenuItem menuItem = popMenu.Items[0] as MenuItem;
  883. menuItem.CommandTarget = PDFViewer;
  884. menuItem.Command = SnapshotEditMenuViewModel.SnapCopyCommand;
  885. //导出
  886. menuItem = popMenu.Items[1] as MenuItem;
  887. menuItem.CommandTarget = PDFViewer;
  888. if (menuItem.Items.Count == 3)
  889. {
  890. MenuItem menuItem1 = menuItem.Items[0] as MenuItem;
  891. menuItem1.CommandTarget = PDFViewer;
  892. menuItem1.Command = SnapshotEditMenuViewModel.ExportPNGCommand;
  893. menuItem1 = menuItem.Items[1] as MenuItem;
  894. menuItem1.CommandTarget = PDFViewer;
  895. menuItem1.Command = SnapshotEditMenuViewModel.ExportJPGCommand;
  896. menuItem1 = menuItem.Items[2] as MenuItem;
  897. menuItem1.CommandTarget = PDFViewer;
  898. menuItem1.Command = SnapshotEditMenuViewModel.ExportPDFCommand;
  899. }
  900. //裁剪
  901. menuItem = popMenu.Items[2] as MenuItem;
  902. menuItem.CommandTarget = PDFViewer;
  903. menuItem.Command = SnapshotEditMenuViewModel.CroppingCommand;
  904. //缩放至所选区域
  905. menuItem = popMenu.Items[3] as MenuItem;
  906. menuItem.CommandTarget = PDFViewer;
  907. menuItem.Visibility = Visibility.Collapsed;
  908. //menuItem.Command = snapshotEditMenuViewModel.CroppingCommand;
  909. //打印
  910. menuItem = popMenu.Items[4] as MenuItem;
  911. menuItem.CommandTarget = PDFViewer;
  912. menuItem.Command = SnapshotEditMenuViewModel.PrintCommand;
  913. }
  914. }
  915. }
  916. }
  917. private void SnapshotEditMenuViewModel_SnapToolEvent(object sender, KeyValuePair<string, object> e)
  918. {
  919. switch (e.Key)
  920. {
  921. case "CloseSnap":
  922. {
  923. #region to do
  924. //var item = PDFViewerTab.SelectedItem as TabItem;
  925. //if (item == null)
  926. //{
  927. // ClearSelectedToolPanel();
  928. // return;
  929. //}
  930. //Grid grid = item.Content as Grid;
  931. //if (grid == null || grid.Children.Count == 0)
  932. //{
  933. // ClearSelectedToolPanel();
  934. // return;
  935. //}
  936. //PDFViewerCtrl pdfViewer = grid.Children[0] as PDFViewerCtrl;
  937. //if (pdfViewer == null)
  938. //{
  939. // ClearSelectedToolPanel();
  940. // return;
  941. //}
  942. #endregion to do
  943. switch (PDFViewer.MouseMode)
  944. {
  945. case MouseModes.SelectTextTool:
  946. break;
  947. default:
  948. BtnSelecttoolIsChecked = false;
  949. //BtnHandIsChecked = true;
  950. PDFViewer.EnableZoom(true);
  951. PDFViewer.EnableScroll(true);
  952. PDFViewer.SetMouseMode(MouseModes.PanTool);
  953. break;
  954. }
  955. }
  956. break;
  957. default:
  958. break;
  959. }
  960. }
  961. private void PDFViewer_AnnotEditHandler(object sender, List<AnnotEditEvent> e)
  962. {
  963. bool isTabItemAnnotation = IsBOTATabItemShow(out BOTAContentViewModel bOTAContentViewModel, out BOTAContent bOTAContent, "TabItemAnnotation");
  964. AnnotationContentViewModel viewModel = null;
  965. AnnotationContent annotation = null;
  966. if (viewContentViewModel.OpenBOTA == true)
  967. {
  968. viewModel = GetAnnotationContentViewModel(bOTAContentViewModel, out annotation);
  969. }
  970. bool isMultiple = false;
  971. Dictionary<int, List<int>> selectAnnotDicts = new Dictionary<int, List<int>>();
  972. if (e != null && e.Count > 0)
  973. {
  974. for (int i = 0; i < e.Count; i++)
  975. {
  976. AnnotEditEvent editEvent = e[i];
  977. bool isVisible = PDFViewer.CheckAnnotVisible(editEvent.PageIndex, editEvent.AnnotIndex);
  978. var annot = editEvent.EditAnnotArgs;
  979. switch (editEvent.EditAction)
  980. {
  981. case ActionType.Add:
  982. #region 区分复制填写签名图形
  983. if (IsPasteShape)
  984. {
  985. if (editEvent.EditAnnotArgs.EventType == AnnotArgsType.AnnotFreehand)
  986. {
  987. if (ShapeNames.Count != 0 && ShapeNames[i] != "Annot")
  988. {
  989. try
  990. {
  991. viewContentViewModel.FillAndSign.Add(new FillAndSignIsShape(editEvent.PageIndex, editEvent.AnnotIndex, ShapeNames[i]));
  992. }
  993. catch { }
  994. }
  995. }
  996. }
  997. #endregion 区分复制填写签名图形
  998. if (viewContentViewModel.CurrentBar != "TabItemAnnotation")
  999. {
  1000. //填写与签名在此区域不选中,不添加selectAnnotDicts词典当中
  1001. }
  1002. else
  1003. {
  1004. if (PropertyPanel.IsMultiSelected)
  1005. {
  1006. if (selectAnnotDicts.ContainsKey(editEvent.PageIndex) == false)
  1007. {
  1008. selectAnnotDicts.Add(editEvent.PageIndex, new List<int>());
  1009. selectAnnotDicts[editEvent.PageIndex].Add(editEvent.AnnotIndex);
  1010. }
  1011. else
  1012. {
  1013. selectAnnotDicts[editEvent.PageIndex].Add(editEvent.AnnotIndex);
  1014. }
  1015. isMultiple = true;
  1016. }
  1017. else
  1018. {
  1019. if (
  1020. annot.EventType == AnnotArgsType.AnnotSquare || annot.EventType == AnnotArgsType.AnnotCircle ||
  1021. annot.EventType == AnnotArgsType.AnnotLine || annot.EventType == AnnotArgsType.AnnotStamp ||
  1022. annot.EventType == AnnotArgsType.AnnotLink
  1023. /*|| annot.EventType == AnnotArgsType.AnnotSticky ||annot.EventType == AnnotArgsType.AnnotFreeText || annot.EventType == AnnotArgsType.AnnotFreehand*/)
  1024. {
  1025. if (selectAnnotDicts.ContainsKey(editEvent.PageIndex) == false)
  1026. {
  1027. selectAnnotDicts.Add(editEvent.PageIndex, new List<int>());
  1028. selectAnnotDicts[editEvent.PageIndex].Add(editEvent.AnnotIndex);
  1029. }
  1030. else
  1031. {
  1032. selectAnnotDicts[editEvent.PageIndex].Add(editEvent.AnnotIndex);
  1033. }
  1034. isMultiple = true;
  1035. }
  1036. }
  1037. }
  1038. if (viewModel != null)
  1039. {
  1040. int pageindex = editEvent.PageIndex;
  1041. int annotindex = editEvent.AnnotIndex;
  1042. viewModel.UpdateAddedAnnot(pageindex, annotindex);
  1043. }
  1044. //添加书签注释,用于未保存前跟图章手绘注释的区分
  1045. if (StrAnnotToolChecked == "Signature")
  1046. {
  1047. AddAnnotSignature(editEvent.EditAnnotArgs);
  1048. }
  1049. //if (editEvent.EditAnnotArgs.EventType == AnnotArgsType.AnnotFreeText)
  1050. //{
  1051. // (editEvent.EditAnnotArgs as FreeTextAnnotArgs).LineWidth = 0;
  1052. //}
  1053. break;
  1054. case ActionType.Modify:
  1055. if (string.IsNullOrEmpty(StrAnnotToolChecked) == false)
  1056. {
  1057. List<AnnotHandlerEventArgs> selectedArgs = new List<AnnotHandlerEventArgs>() { annot };
  1058. switch (annot.EventType)
  1059. {
  1060. case AnnotArgsType.AnnotFreeText://文本
  1061. GetFreetext(selectedArgs);
  1062. break;
  1063. }
  1064. }
  1065. if (viewModel != null)
  1066. {
  1067. int pageindex = editEvent.PageIndex;
  1068. int annotindex = editEvent.AnnotIndex;
  1069. viewModel.UpdateModifiedAnnot(pageindex, annotindex);
  1070. }
  1071. break;
  1072. case ActionType.Del:
  1073. //isTabItemAnnotation = IsBOTATabItemShow(out bOTAContentViewModel, out bOTAContent, "TabItemAnnotation");
  1074. //if (viewContentViewModel.OpenBOTA == true && bOTAContent.TabItemAnnotation.IsSelected)
  1075. //{
  1076. // AnnotationContentViewModel viewModel = GetAnnotationContentViewModel(bOTAContentViewModel, out AnnotationContent annotation);
  1077. #region//填写与签名 删除缓存信息列表
  1078. //if (Shape != "None")
  1079. //{
  1080. for (int j = 0; j < viewContentViewModel.FillAndSign.Count; j++)
  1081. {
  1082. if (viewContentViewModel.FillAndSign[j].PageIndex == editEvent.PageIndex && viewContentViewModel.FillAndSign[j].AnnotIndex == editEvent.AnnotIndex)
  1083. {
  1084. viewContentViewModel.FillAndSign.Remove(viewContentViewModel.FillAndSign[j]);
  1085. }
  1086. }
  1087. for (int j = 0; j < viewContentViewModel.AnnotSignatures.Count; j++)
  1088. {
  1089. if (viewContentViewModel.AnnotSignatures[j].Item1 == editEvent.PageIndex && viewContentViewModel.AnnotSignatures[j].Item2 == editEvent.AnnotIndex)
  1090. {
  1091. viewContentViewModel.AnnotSignatures.Remove(viewContentViewModel.AnnotSignatures[j]);
  1092. }
  1093. }
  1094. //}
  1095. #endregion PDFViewer事件
  1096. if (viewModel != null)
  1097. {
  1098. int pageindex = editEvent.PageIndex;
  1099. int annotindex = editEvent.AnnotIndex;
  1100. viewModel.DeleteModifiedAnnot(pageindex, annotindex);
  1101. }
  1102. if (string.IsNullOrEmpty(StrAnnotToolChecked))
  1103. {
  1104. ExitAnnotationTool();
  1105. viewContentViewModel.SelectedPrpoertyPanel("PropertyPanelContent", null);
  1106. }
  1107. else
  1108. {
  1109. switch (StrAnnotToolChecked)
  1110. {
  1111. case "Link":
  1112. PropertyPanel.IsAddLink = true;
  1113. GetLink();
  1114. break;
  1115. }
  1116. }
  1117. break;
  1118. case ActionType.TextEdit:
  1119. break;
  1120. default:
  1121. break;
  1122. }
  1123. }
  1124. IsPasteShape = false;
  1125. if (isMultiple && selectAnnotDicts.Count >= 1)
  1126. {
  1127. //PDFViewer.DisableClearSelectAnnot(false);
  1128. PDFViewer.ClearSelectAnnots();
  1129. if (StrAnnotToolChecked != "Signature")
  1130. {
  1131. //PDFViewer.DisableClearSelectAnnot(true);
  1132. PDFViewer.SelectAnnotation(selectAnnotDicts);
  1133. //禁止取消选中注释
  1134. //PDFViewer.DisableClearSelectAnnot(false);
  1135. }
  1136. }
  1137. //MultipleSelectionAnnot(e);
  1138. //空白处 右键菜单 添加注释 为单次添加,不连续添加
  1139. if (IsNoSelectMenu && PropertyPanel.IsAddLink == false)
  1140. {
  1141. viewContentViewModel.ReadModeIsShowProperty = false;
  1142. IsNoSelectMenu = false;
  1143. ExitAnnotationTool();
  1144. }
  1145. if (viewContentViewModel.IsRightMenuSelectedTextAddLink == false)
  1146. {
  1147. viewContentViewModel.ReadModeIsShowProperty = false;
  1148. }
  1149. }
  1150. }
  1151. //复制多个注释,粘贴后,默认注释未选中状态
  1152. private void MultipleSelectionAnnot(List<AnnotEditEvent> e)
  1153. {
  1154. bool isAdd = false;
  1155. Dictionary<int, List<int>> selectAnnotDicts = new Dictionary<int, List<int>>();
  1156. foreach (var item in e)
  1157. {
  1158. if (item.EditAction == ActionType.Add || item.EditAction == ActionType.Modify)
  1159. {
  1160. var annot = item.EditAnnotArgs;
  1161. if (annot.EventType == AnnotArgsType.AnnotSquare || annot.EventType == AnnotArgsType.AnnotCircle ||
  1162. annot.EventType == AnnotArgsType.AnnotLine || annot.EventType == AnnotArgsType.AnnotStamp || annot.EventType == AnnotArgsType.AnnotFreeText || annot.EventType == AnnotArgsType.AnnotFreehand)
  1163. {
  1164. if (selectAnnotDicts.ContainsKey(item.PageIndex) == false)
  1165. {
  1166. selectAnnotDicts.Add(item.PageIndex, new List<int>());
  1167. selectAnnotDicts[item.PageIndex].Add(item.AnnotIndex);
  1168. }
  1169. else
  1170. {
  1171. selectAnnotDicts[item.PageIndex].Add(item.AnnotIndex);
  1172. }
  1173. isAdd = true;
  1174. }
  1175. }
  1176. }
  1177. if (isAdd && selectAnnotDicts.Count >= 1)
  1178. {
  1179. PDFViewer.ClearSelectAnnots();
  1180. if (StrAnnotToolChecked != "Signature")
  1181. {
  1182. PDFViewer.SelectAnnotation(selectAnnotDicts);
  1183. }
  1184. }
  1185. }
  1186. //阅读页悬浮相应
  1187. /// <summary>
  1188. /// 阅读页鼠标悬浮在注释上的虚线
  1189. /// </summary>
  1190. /// <param name="sender"></param>
  1191. /// <param name="e"></param>
  1192. private void PDFViewer_AnnotHoverHandler(object sender, AnnotHoverData e)
  1193. {
  1194. if (e != null && e.DrawContext != null)
  1195. {
  1196. if (StrAnnotToolChecked != "Link")
  1197. {
  1198. if (e.Annot is CPDFLinkAnnotation linkAnnotation)
  1199. {
  1200. return;
  1201. }
  1202. }
  1203. if (StrAnnotToolChecked == "Freehand" || (IsNoSelectMenu && isRightMenuAddAnnot))
  1204. {
  1205. return;
  1206. }
  1207. Rect hoverRect = new Rect(
  1208. e.PaintRect.Left - 2,
  1209. e.PaintRect.Top - 2,
  1210. e.PaintRect.Width + 4,
  1211. e.PaintRect.Height + 4);
  1212. if (e.Annot is CPDFTextAnnotation sticky)
  1213. {
  1214. hoverRect = new Rect(
  1215. e.PaintRect.Left - 2,
  1216. e.PaintRect.Top + 2,
  1217. e.PaintRect.Width + 5,
  1218. e.PaintRect.Height + 2);
  1219. }
  1220. Pen hoverPen = new Pen(new SolidColorBrush(Color.FromArgb(0xff, 0x11, 0x8A, 0xff)), 1);
  1221. hoverPen.DashStyle = DashStyles.Dash;
  1222. e.DrawContext?.DrawRectangle(null, hoverPen, hoverRect);
  1223. //便签,显示ToolTip内容
  1224. if (e.Annot != null && e.Annot.Type == C_ANNOTATION_TYPE.C_ANNOTATION_TEXT)
  1225. {
  1226. PopAnnotToolTip(e.Annot.GetRect(), hoverRect, e.Annot.GetContent());
  1227. return;
  1228. }
  1229. }
  1230. CloseAnnotToolTip();
  1231. }
  1232. private void PDFViewer_MouseMove(object sender, MouseEventArgs e)
  1233. {
  1234. if (sender != null && PDFViewer.ToolTip != null && PDFViewer.Parent != null)
  1235. {
  1236. //鼠标移到注释之外,关闭ToolTip浮窗
  1237. var newPoint = e.GetPosition(PDFViewer.Parent as ContentControl);
  1238. var isOutw = newPoint.X > (oldRect.X + oldRect.Width + 4);
  1239. var isOuth = newPoint.Y > (oldRect.Y + oldRect.Height + 4);
  1240. if (newPoint.X < oldRect.X || newPoint.Y < oldRect.Y || isOutw || isOuth)
  1241. {
  1242. CloseAnnotToolTip();
  1243. }
  1244. }
  1245. }
  1246. private Rect oldRect = new Rect(0, 0, 0, 0);
  1247. private void PopAnnotToolTip(CRect placementRect, Rect hoverRect, string content)
  1248. {
  1249. //便签,显示ToolTip内容
  1250. if (PDFViewer.ToolTip == null)
  1251. {
  1252. if (string.IsNullOrEmpty(content) == false)
  1253. {
  1254. ToolTip TipChild = new ToolTip();
  1255. TipChild.Style = App.Current.Resources["FlowToolTip"] as Style;
  1256. TipChild.MaxWidth = 246;
  1257. TipChild.Content = content;
  1258. TipChild.Visibility = Visibility.Visible;
  1259. TipChild.IsOpen = true;
  1260. TipChild.Placement = PlacementMode.Right;
  1261. TipChild.PlacementRectangle = new Rect(placementRect.left, placementRect.top, placementRect.right, placementRect.bottom);
  1262. TipChild.PlacementTarget = PDFViewer.Parent as ContentControl;
  1263. TipChild.Placement = PlacementMode.MousePoint;
  1264. PDFViewer.ToolTip = TipChild;
  1265. oldRect = hoverRect;
  1266. PDFViewer.MouseMove -= PDFViewer_MouseMove;
  1267. PDFViewer.MouseMove += PDFViewer_MouseMove;
  1268. }
  1269. }
  1270. }
  1271. //关闭ToolTip
  1272. private void CloseAnnotToolTip()
  1273. {
  1274. if (PDFViewer.ToolTip != null && PDFViewer.ToolTip is ToolTip)
  1275. {
  1276. ToolTip oldTips = (ToolTip)PDFViewer.ToolTip;
  1277. oldTips.IsOpen = false;
  1278. oldTips.Visibility = Visibility.Collapsed;
  1279. PDFViewer.ToolTip = null;
  1280. PDFViewer.MouseMove -= PDFViewer_MouseMove;
  1281. oldRect = new Rect(0, 0, 0, 0);
  1282. }
  1283. }
  1284. #endregion PDFViewer事件
  1285. #region BindingEvent事件
  1286. //同一属性面板,不同的注释类型
  1287. private void AnnotPropertyPanel_AnnotTypeChanged(object sender, Dictionary<AnnotArgsType, object> e)
  1288. {
  1289. if (e != null && sender is SharpsAnnotPropertyViewModel sharpsAnnot)
  1290. {
  1291. AnnotHandlerEventArgs annotArgs = null;
  1292. //PropertyPanel.SaveLastAnnot();
  1293. List<AnnotHandlerEventArgs> annots = new List<AnnotHandlerEventArgs>();
  1294. foreach (AnnotArgsType argsType in e.Keys)
  1295. {
  1296. if (PropertyPanel.annot != null)
  1297. {
  1298. if (PropertyPanel.annot.EventType != argsType)
  1299. {
  1300. PDFViewer.DisableClearSelectAnnot(false);
  1301. PDFViewer.ClearSelectAnnots();
  1302. PDFViewer.SetMouseMode(MouseModes.PanTool);
  1303. CurrentSelectedAnnot = null;
  1304. }
  1305. }
  1306. switch (argsType)
  1307. {
  1308. case AnnotArgsType.AnnotSquare:
  1309. #region TO DO
  1310. //选择一个形状注释A,在选择B(非多选),修改属性成功,以下操作的操作可以解决,
  1311. //可能会出现选择注释A,鼠标直接点击属性面板,注释A取消选中,但还可以对注释A更改属性的BUG
  1312. if (CurrentSelectedAnnot != null)
  1313. {
  1314. if (CurrentSelectedAnnot.EventType == AnnotArgsType.AnnotSquare)
  1315. {
  1316. CurrentSelectedAnnot.PageIndex = -1;
  1317. CurrentSelectedAnnot.AnnotIndex = -1;
  1318. CurrentSelectedAnnot.ClientRect = Rect.Empty;
  1319. annots.Add(CurrentSelectedAnnot);
  1320. }
  1321. }
  1322. if (annots.Count > 0)
  1323. {
  1324. annotArgs = GetRect(annots);
  1325. }
  1326. else
  1327. {
  1328. annotArgs = GetRect();
  1329. }
  1330. #endregion TO DO
  1331. //annotArgs = GetRect();
  1332. break;
  1333. case AnnotArgsType.AnnotCircle:
  1334. #region TO DO
  1335. if (CurrentSelectedAnnot != null)
  1336. {
  1337. if (CurrentSelectedAnnot.EventType == AnnotArgsType.AnnotCircle)
  1338. {
  1339. CurrentSelectedAnnot.PageIndex = -1;
  1340. CurrentSelectedAnnot.AnnotIndex = -1;
  1341. CurrentSelectedAnnot.ClientRect = Rect.Empty;
  1342. annots.Add(CurrentSelectedAnnot);
  1343. }
  1344. }
  1345. if (annots.Count > 0)
  1346. {
  1347. annotArgs = GetCircle(annots);
  1348. }
  1349. else
  1350. {
  1351. annotArgs = GetCircle();
  1352. }
  1353. #endregion TO DO
  1354. //annotArgs = GetCircle();
  1355. break;
  1356. case AnnotArgsType.AnnotLine:
  1357. var LineTag = e[argsType] as string;
  1358. #region TO DO
  1359. if (CurrentSelectedAnnot != null)
  1360. {
  1361. if (CurrentSelectedAnnot.EventType == AnnotArgsType.AnnotLine)
  1362. {
  1363. CurrentSelectedAnnot.PageIndex = -1;
  1364. CurrentSelectedAnnot.AnnotIndex = -1;
  1365. CurrentSelectedAnnot.ClientRect = Rect.Empty;
  1366. if (CurrentSelectedAnnot is LineAnnotArgs lineAnnotArgs)
  1367. {
  1368. if (lineAnnotArgs.HeadLineType >= (C_LINE_TYPE)1 || lineAnnotArgs.TailLineType >= (C_LINE_TYPE)1)
  1369. {
  1370. if (LineTag == "Arrow")
  1371. {
  1372. annots.Add(CurrentSelectedAnnot);
  1373. }
  1374. }
  1375. else
  1376. {
  1377. if (LineTag == "Line")
  1378. {
  1379. annots.Add(CurrentSelectedAnnot);
  1380. }
  1381. }
  1382. }
  1383. }
  1384. }
  1385. if (annots.Count > 0)
  1386. {
  1387. annotArgs = GetArrowLine(LineTag, annots);
  1388. }
  1389. else
  1390. {
  1391. annotArgs = GetArrowLine(LineTag);
  1392. }
  1393. #endregion TO DO
  1394. //annotArgs = GetArrowLine(LineTag);
  1395. break;
  1396. }
  1397. ShowPropertyPanel();
  1398. if (string.IsNullOrEmpty(StrAnnotToolChecked) || StrAnnotToolChecked != "Rect")
  1399. {
  1400. //PDFViewer.SetMouseMode(MouseModes.PanTool);
  1401. return;
  1402. }
  1403. if (annotArgs != null)
  1404. {
  1405. annotArgs.Author = Settings.Default.AppProperties.Description.Author;
  1406. PDFViewer.SetMouseMode(MouseModes.AnnotCreate);
  1407. PDFViewer.SetToolParam(annotArgs);
  1408. }
  1409. }
  1410. }
  1411. }
  1412. //来自属性面板的事件,更改颜色等属性而触发
  1413. private void AnnotPropertyPanel_DataChanged(object sender, Dictionary<AnnotArgsType, object> e)
  1414. {
  1415. if (e != null)
  1416. {
  1417. foreach (AnnotArgsType argsType in e.Keys)
  1418. {
  1419. var key = ToolExpandDict.FirstOrDefault(q => q.Value == argsType);
  1420. switch (argsType)
  1421. {
  1422. case AnnotArgsType.AnnotHighlight:
  1423. if (e[argsType] is Color)
  1424. {
  1425. HighLightColor = new SolidColorBrush((Color)e[argsType]);
  1426. }
  1427. if (e[argsType] is double)
  1428. {
  1429. HighLightOpacity = (double)e[argsType];
  1430. }
  1431. //创建注释后,修改注释属性,可用于下次创建的注释
  1432. if (PropertyPanel != null && PropertyPanel.annot != null && PDFViewer.MouseMode == MouseModes.AnnotCreate)
  1433. {
  1434. if (StrAnnotToolChecked == key.Key)
  1435. {
  1436. PDFViewer.SetToolParam(PropertyPanel.annot);
  1437. }
  1438. }
  1439. break;
  1440. case AnnotArgsType.AnnotUnderline:
  1441. if (e[argsType] is Color)
  1442. {
  1443. UnderLineColor = new SolidColorBrush((Color)e[argsType]);
  1444. }
  1445. if (e[argsType] is double)
  1446. {
  1447. underLineOpacity = (double)e[argsType];
  1448. }
  1449. //创建注释后,修改注释属性,可用于下次创建的注释
  1450. if (PropertyPanel != null && PropertyPanel.annot != null && PDFViewer.MouseMode == MouseModes.AnnotCreate)
  1451. {
  1452. if (StrAnnotToolChecked == key.Key)
  1453. {
  1454. PDFViewer.SetToolParam(PropertyPanel.annot);
  1455. }
  1456. }
  1457. break;
  1458. case AnnotArgsType.AnnotSquiggly:
  1459. if (e[argsType] is Color)
  1460. {
  1461. SquigglyColor = new SolidColorBrush((Color)e[argsType]);
  1462. }
  1463. if (e[argsType] is double)
  1464. {
  1465. SquigglyOpacity = (double)e[argsType];
  1466. }
  1467. //创建注释后,修改注释属性,可用于下次创建的注释
  1468. if (PropertyPanel != null && PropertyPanel.annot != null && PDFViewer.MouseMode == MouseModes.AnnotCreate)
  1469. {
  1470. if (StrAnnotToolChecked == key.Key)
  1471. {
  1472. PDFViewer.SetToolParam(PropertyPanel.annot);
  1473. }
  1474. }
  1475. break;
  1476. case AnnotArgsType.AnnotStrikeout:
  1477. if (e[argsType] is Color)
  1478. {
  1479. StrikeoutColor = new SolidColorBrush((Color)e[argsType]);
  1480. }
  1481. if (e[argsType] is double)
  1482. {
  1483. StrikeoutOpacity = (double)e[argsType];
  1484. }
  1485. //创建注释后,修改注释属性,可用于下次创建的注释
  1486. if (PropertyPanel != null && PropertyPanel.annot != null && PDFViewer.MouseMode == MouseModes.AnnotCreate)
  1487. {
  1488. if (StrAnnotToolChecked == key.Key)
  1489. {
  1490. PDFViewer.SetToolParam(PropertyPanel.annot);
  1491. }
  1492. }
  1493. break;
  1494. case AnnotArgsType.AnnotFreehand:
  1495. if (e[argsType] is FreehandAnnotArgs)
  1496. {
  1497. var annot = e[argsType] as FreehandAnnotArgs;
  1498. if (annot != null)
  1499. {
  1500. if (PropertyPanel != null)
  1501. {
  1502. //属性面板,切换橡皮擦后,再回到画笔时,需要恢复最近画笔的属性值
  1503. var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
  1504. PropertyPanel.AnnotEvent = AnnotEvent;
  1505. var AnnotEvents = new List<AnnotAttribEvent>();
  1506. AnnotEvents.Add(AnnotEvent);
  1507. PropertyPanel.AnnotEvents = AnnotEvents;
  1508. PropertyPanel.annot = annot;
  1509. //手绘注释工具按钮的属性
  1510. // FreehandPath.Opacity = annot.Transparency;
  1511. // FreehandPath.Fill = new SolidColorBrush(annot.InkColor);
  1512. }
  1513. if (PropertyPanel != null && PropertyPanel.annot != null && PDFViewer.MouseMode == MouseModes.AnnotCreate)
  1514. {
  1515. if (StrAnnotToolChecked == key.Key)
  1516. {
  1517. PDFViewer.SetToolParam(PropertyPanel.annot);
  1518. }
  1519. }
  1520. }
  1521. }
  1522. break;
  1523. case AnnotArgsType.AnnotErase:
  1524. if (e[argsType] is ToggleButton)
  1525. {
  1526. ToggleButton clickBtn = e[argsType] as ToggleButton;
  1527. if (clickBtn.IsChecked == true)
  1528. {
  1529. if (clickBtn.Tag.ToString() != "PenBtn")
  1530. {
  1531. CustomIconToggleBtn btn = new CustomIconToggleBtn();
  1532. btn.Tag = "Freehand";
  1533. btn.IsChecked = true;
  1534. BtnMyTools_Click(btn);
  1535. break;
  1536. }
  1537. else
  1538. {
  1539. CreateEraseArgs();
  1540. }
  1541. }
  1542. }
  1543. break;
  1544. case AnnotArgsType.AnnotSquare:
  1545. case AnnotArgsType.AnnotCircle:
  1546. case AnnotArgsType.AnnotLine:
  1547. case AnnotArgsType.AnnotFreeText:
  1548. //创建注释后,修改注释属性,可用于下次创建的注释
  1549. if (PropertyPanel != null && PropertyPanel.annot != null && PDFViewer.MouseMode == MouseModes.AnnotCreate)
  1550. {
  1551. if (StrAnnotToolChecked == "Rect" && PropertyPanel.SharpsAnnot == key.Key)
  1552. {
  1553. PDFViewer.SetToolParam(PropertyPanel.annot);
  1554. PropertyPanel.SaveLastAnnot();
  1555. }
  1556. }
  1557. break;
  1558. }
  1559. }
  1560. }
  1561. }
  1562. private void CreateEraseArgs()
  1563. {
  1564. EraseArgs eraseArgs = new EraseArgs();
  1565. eraseArgs.UIBorderColor = Color.FromArgb(0x1A, 0x00, 0x00, 0x00);
  1566. eraseArgs.UIFillColor = Color.FromArgb(0x1A, 0x00, 0x00, 0x00);
  1567. eraseArgs.Thickness = 10;
  1568. DefaultAnnotProperty annotProperty = SettingHelper.GetAnnotDefaultProperty(AnnotArgsType.AnnotErase);
  1569. if (annotProperty != null)
  1570. {
  1571. eraseArgs.Thickness = annotProperty.Thickness;
  1572. }
  1573. PDFViewer.ClearSelectAnnots(false);
  1574. PDFViewer.SetMouseMode(MouseModes.AnnotCreate);
  1575. PDFViewer.SetToolParam(eraseArgs);
  1576. List<AnnotHandlerEventArgs> eraseArgsList = new List<AnnotHandlerEventArgs>();
  1577. if (eraseArgs != null)
  1578. eraseArgsList.Add(eraseArgs);
  1579. AddToPropertyPanel("FreehandAnnotProperty", "Freehand", eraseArgsList);
  1580. }
  1581. #endregion BindingEvent事件
  1582. }
  1583. }