123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305 |
- using ComPDFKit.PDFAnnotation;
- using ComPDFKit.PDFDocument;
- using ComPDFKitViewer;
- using ComPDFKitViewer.AnnotEvent;
- using ComPDFKitViewer.PdfViewer;
- using Microsoft.Office.Core;
- using Microsoft.Win32;
- using PDF_Office.CustomControl;
- using PDF_Office.Helper;
- using PDF_Office.Model;
- using PDF_Office.Model.BOTA;
- using PDF_Office.Properties;
- using PDF_Office.ViewModels.BOTA;
- using PDF_Office.ViewModels.PropertyPanel.AnnotPanel;
- using PDF_Office.Views.BOTA;
- using PDF_Office.Views.PropertyPanel.AnnotPanel;
- using PDFSettings;
- using Prism.Mvvm;
- using Prism.Regions;
- using Prism.Services.Dialogs;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Forms;
- using System.Windows.Input;
- using System.Windows.Media;
- using static Dropbox.Api.Sharing.ListFileMembersIndividualResult;
- using ContextMenu = System.Windows.Controls.ContextMenu;
- using HorizontalAlignment = System.Windows.HorizontalAlignment;
- using MenuItem = System.Windows.Controls.MenuItem;
- using OpenFileDialog = Microsoft.Win32.OpenFileDialog;
- namespace PDF_Office.ViewModels.Tools
- {
- //文件说明:初始化注释工具的数据,注释工具,菜单响应事件
- public sealed partial class AnnotToolContentViewModel : BindableBase, INavigationAware
- {
- #region 初始化
- #region 初始化数据
- //初始化注释的属性值,并存在本地缓存数据集里
- private void InitDefaultValue()
- {
- InitAnnotHighlight();
- InitAnnotUnderline();
- InitAnnotSquiggly();
- InitAnnotStrikeout();
- }
- private void InitAnnotHighlight()
- {
- var annotate = Settings.Default.AppProperties.Annotate;
- if(annotate != null)
- {
- HighLightColor = new SolidColorBrush(annotate.HighLightColor);
- HighLightOpacity = 1;
- }
- else
- {
- HighLightColor = new SolidColorBrush(Colors.Red);
- HighLightOpacity = 1;
- }
-
- }
- private void InitAnnotUnderline()
- {
- var annotate = Settings.Default.AppProperties.Annotate;
- if (annotate != null)
- {
- UnderLineColor = new SolidColorBrush(annotate.UnderLineColor);
- HighLightOpacity = 1;
- }
- else
- {
- UnderLineColor = new SolidColorBrush(Colors.Red);
- UnderLineOpacity = 1;
- }
-
- }
- private void InitAnnotSquiggly()
- {
- var annotate = Settings.Default.AppProperties.Annotate;
- if (annotate != null)
- {
- SquigglyColor = new SolidColorBrush(annotate.StrikethroughColor);
- SquigglyOpacity = 1;
- }
- else
- {
- SquigglyColor = new SolidColorBrush(Colors.Red);
- SquigglyOpacity = 1;
- }
- }
- private void InitAnnotStrikeout()
- {
- var annotate = Settings.Default.AppProperties.Annotate;
- if (annotate != null)
- {
- StrikeoutColor = new SolidColorBrush(annotate.NoteAnnoteColor);
- StrikeoutOpacity = 1;
- }
- else
- {
- StrikeoutColor = new SolidColorBrush(Colors.Red);
- StrikeoutOpacity = 1;
- }
- }
- //用来记录选中和创建注释的标识
- private void InitToolDict()
- {
- ToolExpandDict.Add("SnapshotEdit", AnnotArgsType.SnapshotWithEditTool);
- ToolExpandDict.Add("HighLight", AnnotArgsType.AnnotHighlight);
- ToolExpandDict.Add("UnderLine", AnnotArgsType.AnnotUnderline);
- ToolExpandDict.Add("Squiggly", AnnotArgsType.AnnotSquiggly);
- ToolExpandDict.Add("Strikeout", AnnotArgsType.AnnotStrikeout);
- ToolExpandDict.Add("Freehand", AnnotArgsType.AnnotFreehand);
- ToolExpandDict.Add("Freetext", AnnotArgsType.AnnotFreeText);
- ToolExpandDict.Add("StickyNote", AnnotArgsType.AnnotSticky);
- ToolExpandDict.Add("Rect", AnnotArgsType.AnnotSquare);
- ToolExpandDict.Add("Circle", AnnotArgsType.AnnotCircle);
- ToolExpandDict.Add("Arrow", AnnotArgsType.AnnotLine);
- ToolExpandDict.Add("Line", AnnotArgsType.AnnotLine);
- ToolExpandDict.Add("Link", AnnotArgsType.AnnotLink);
- }
- #endregion 初始化数据
- #endregion 初始化
- #region 注释工具
- //注释工具
- private void FindAnnotTypeKey(string tag, ref AnnotHandlerEventArgs annotArgs, bool isRightMenuAdd = false)
- {
- switch (tag)
- {
- case "SnapshotEdit"://内容选择
- annotArgs = GetSnapshotEdit();
- break;
- case "HighLight"://字体高亮
- annotArgs = GetHighLight();
- break;
- case "UnderLine"://下划线
- annotArgs = GetUnderLine();
- break;
- case "Squiggly"://波浪线
- annotArgs = GetSquiggly();
- break;
- case "Strikeout"://删除线
- annotArgs = GetStrikeout();
- break;
- case "Freehand"://手绘
- annotArgs = GetFreehand();
- break;
- case "Freetext"://文本
- annotArgs = GetFreetext();
- break;
- case "StickyNote"://便签
- annotArgs = GetStickyNote();
- break;
- case "Rect"://矩形
- annotArgs = GetRect();
- break;
- case "Circle"://圆
- annotArgs = GetCircle();
- break;
- case "Arrow"://箭头
- case "Line"://线
- annotArgs = GetArrowLine(tag);
- break;
- case "Stamp"://图章
- annotArgs = GetStamp();
- break;
- case "Image":
- annotArgs = GetImage();
- break;
- case "Signature"://签名
- annotArgs = GetSignature();
- PDFViewer.SetMouseMode(MouseModes.PanTool);//清空其他注释
- break;
- case "Link"://链接
- viewContentViewModel.IsRightMenuCreateLink = isRightMenuAdd;
- annotArgs = GetLink();
- break;
- }
- }
- /// <summary>
- /// 高亮注释
- /// </summary>
- private AnnotHandlerEventArgs GetHighLight(List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- TextHighlightAnnotArgs highlightArgs = null;
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- highlightArgs = new TextHighlightAnnotArgs();
- highlightArgs.Transparency = highLightOpacity;
- highlightArgs.Color = (highLightColor as SolidColorBrush).Color;
- if (highlightArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(highlightArgs);
- }
- }
- else
- {
- highlightArgs = selectedArgs[0] as TextHighlightAnnotArgs;
- }
- annotAttribsList[AnnotAttrib.Color] = highlightArgs.Color;
- annotAttribsList[AnnotAttrib.Transparency] = highlightArgs.Transparency;
- annotAttribsList[AnnotAttrib.NoteText] = highlightArgs.Content;
- AddToPropertyPanel("TextAnnotProperty", "HighLight", selectedArgs, annotAttribsList);
- return highlightArgs;
- }
- /// <summary>
- /// 链接
- /// </summary>
- /// <param name="selectedArgs">所选中的注释</param>
- /// <param name="annotAttribEvent">注释属性列表</param>
- public AnnotHandlerEventArgs GetLink(List<AnnotHandlerEventArgs> selectedArgs = null, AnnotAttribEvent annotAttribEvent = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- LinkAnnotArgs linkArgs = new LinkAnnotArgs();
- if (selectedArgs != null && selectedArgs.Count > 1)
- {
- linkArgs = selectedArgs[0] as LinkAnnotArgs;
- }
- else
- {
- linkArgs.URI = string.Empty;
- linkArgs.LinkType = LINK_TYPE.GOTO;
- linkArgs.DestIndex = -1;
- if (linkArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(linkArgs);
- }
- }
- annotAttribsList[AnnotAttrib.LinkType] = linkArgs.LinkType;
- annotAttribsList[AnnotAttrib.LinkUri] = linkArgs.URI;
- annotAttribsList[AnnotAttrib.LinkDestIndx] = linkArgs.DestIndex;
- AddToPropertyPanel("LinkAnnotProperty", "Link", selectedArgs, annotAttribsList, annotAttribEvent);
- return linkArgs;
- }
- /// <summary>
- /// 下划线
- /// </summary>
- /// <param name="selectedArgs"></param>
- private AnnotHandlerEventArgs GetUnderLine(List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- TextUnderlineAnnotArgs underlineArgs = null;
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- underlineArgs = new TextUnderlineAnnotArgs();
- underlineArgs.Transparency = UnderLineOpacity;
- underlineArgs.Color = (UnderLineColor as SolidColorBrush).Color;
- if (underlineArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(underlineArgs);
- }
- }
- else
- {
- underlineArgs = selectedArgs[0] as TextUnderlineAnnotArgs;
- }
- annotAttribsList[AnnotAttrib.Color] = underlineArgs.Color;
- annotAttribsList[AnnotAttrib.Transparency] = underlineArgs.Transparency;
- annotAttribsList[AnnotAttrib.NoteText] = underlineArgs.Content;
- AddToPropertyPanel("TextAnnotProperty", "UnderLine", selectedArgs, annotAttribsList);
- return underlineArgs;
- }
- /// <summary>
- /// 波浪线
- /// </summary>
- /// <param name="selectedArgs"></param>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetSquiggly(List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- TextSquigglyAnnotArgs squigglyArgs = null;
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- squigglyArgs = new TextSquigglyAnnotArgs();
- squigglyArgs.Transparency = SquigglyOpacity;
- squigglyArgs.Color = (squigglyColor as SolidColorBrush).Color;
- if (squigglyArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(squigglyArgs);
- }
- }
- else
- {
- squigglyArgs = selectedArgs[0] as TextSquigglyAnnotArgs;
- }
- annotAttribsList[AnnotAttrib.Color] = squigglyArgs.Color;
- annotAttribsList[AnnotAttrib.Transparency] = squigglyArgs.Transparency;
- annotAttribsList[AnnotAttrib.NoteText] = squigglyArgs.Content;
- AddToPropertyPanel("TextAnnotProperty", "Squiggly", selectedArgs, annotAttribsList);
- return squigglyArgs;
- }
- /// <summary>
- /// 删除线
- /// </summary>
- /// <param name="selectedArgs"></param>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetStrikeout(List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- TextStrikeoutAnnotArgs strikeoutArgs = null;
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- strikeoutArgs = new TextStrikeoutAnnotArgs();
- strikeoutArgs.Transparency = strikeoutOpacity;
- strikeoutArgs.Color = (strikeoutColor as SolidColorBrush).Color;
- if (strikeoutArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(strikeoutArgs);
- }
- }
- else
- {
- strikeoutArgs = selectedArgs[0] as TextStrikeoutAnnotArgs;
- }
- annotAttribsList[AnnotAttrib.Color] = strikeoutArgs.Color;
- annotAttribsList[AnnotAttrib.Transparency] = strikeoutArgs.Transparency;
- annotAttribsList[AnnotAttrib.NoteText] = strikeoutArgs.Content;
- AddToPropertyPanel("TextAnnotProperty", "Strikeout", selectedArgs, annotAttribsList);
- return strikeoutArgs;
- }
- /// <summary>
- /// 手绘
- /// </summary>
- /// <param name="selectedArgs"></param>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetFreehand(List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- FreehandAnnotArgs freehandArgs = null;
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- freehandArgs = new FreehandAnnotArgs();
- var annotate = Settings.Default.AppProperties.Annotate;
- if(annotate != null)
- {
- freehandArgs.InkColor = annotate.FreeHandColor;
- }
- else
- {
- freehandArgs.InkColor = Color.FromRgb(0x38, 0xE0, 0x2E);
- }
- freehandArgs.Transparency = 1;
- freehandArgs.LineWidth = 2;
- if (freehandArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(freehandArgs);
- }
- }
- else
- {
- freehandArgs = selectedArgs[0] as FreehandAnnotArgs;
- }
- annotAttribsList[AnnotAttrib.Color] = freehandArgs.InkColor;
- annotAttribsList[AnnotAttrib.Transparency] = freehandArgs.Transparency;
- annotAttribsList[AnnotAttrib.Thickness] = freehandArgs.LineWidth;
- annotAttribsList[AnnotAttrib.NoteText] = freehandArgs.Content;
- AddToPropertyPanel("FreehandAnnotProperty", "Freehand", selectedArgs, annotAttribsList);
- return freehandArgs;
- }
- /// <summary>
- /// 文本
- /// </summary>
- /// <param name="selectedArgs"></param>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetFreetext(List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- FreeTextAnnotArgs freetextArgs = null;
- TextAlignment textAlignment;
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- freetextArgs = new FreeTextAnnotArgs();
-
- var annotate = Settings.Default.AppProperties.Annotate;
- if (annotate != null)
- {
- freetextArgs.FontColor = annotate.TextAnnoteColor;
- }
- else
- {
- freetextArgs.FontColor = Colors.Black;
- }
- freetextArgs.Align = TextAlignment.Left;
- freetextArgs.BgColor = Colors.Transparent;
- freetextArgs.FontFamily = new FontFamily(Settings.Default.AppProperties.Annotate.TextFontFamaily);
- freetextArgs.FontColor = Colors.Black;
- freetextArgs.FontSize = 14;
- freetextArgs.Transparency = 1;
- freetextArgs.LineColor = Colors.Black;
- freetextArgs.LineWidth = 0;
- freetextArgs.TextContent = string.Empty;
- int align = (int)Settings.Default.AppProperties.Annotate.TextAlign;
- if (align == 0)
- textAlignment = TextAlignment.Left;
- else if (align == 1)
- textAlignment = TextAlignment.Center;
- else
- textAlignment = TextAlignment.Right;
- if (freetextArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(freetextArgs);
- }
- }
- else
- {
- freetextArgs = selectedArgs[0] as FreeTextAnnotArgs;
- textAlignment = freetextArgs.Align;
- }
- annotAttribsList[AnnotAttrib.Color] = freetextArgs.LineColor;
- annotAttribsList[AnnotAttrib.FillColor] = freetextArgs.BgColor;
- annotAttribsList[AnnotAttrib.Thickness] = freetextArgs.LineWidth;
- annotAttribsList[AnnotAttrib.Transparency] = freetextArgs.Transparency;
- annotAttribsList[AnnotAttrib.FontColor] = freetextArgs.FontColor;
- annotAttribsList[AnnotAttrib.FontSize] = freetextArgs.FontSize;
- annotAttribsList[AnnotAttrib.FontFamily] = freetextArgs.FontFamily;
- annotAttribsList[AnnotAttrib.FontStyle] = freetextArgs.FontStyle;
- annotAttribsList[AnnotAttrib.FontWeight] = freetextArgs.FontWeight;
- annotAttribsList[AnnotAttrib.TextAlign] = textAlignment;
- annotAttribsList[AnnotAttrib.NoteText] = freetextArgs.TextContent;
- AddToPropertyPanel("FreetextAnnotProperty", "Freetext", selectedArgs, annotAttribsList);
- return freetextArgs;
- }
- /// <summary>
- /// 便签
- /// </summary>
- /// <param name="selectedArgs"></param>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetStickyNote(List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- StickyAnnotArgs stickyAnnotArgs = new StickyAnnotArgs();
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- var annotate = Settings.Default.AppProperties.Annotate;
- if (annotate != null)
- {
- stickyAnnotArgs.Color = annotate.NoteAnnoteColor;
- }
- else
- {
- stickyAnnotArgs.Color = Color.FromRgb(0xFF, 0x81, 0x33);
- }
- stickyAnnotArgs.StickyNote = string.Empty;
- stickyAnnotArgs.Transparency = 1;
- if (stickyAnnotArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(stickyAnnotArgs);
- }
- }
- else
- {
- stickyAnnotArgs = selectedArgs[0] as StickyAnnotArgs;
- }
- annotAttribsList[AnnotAttrib.Color] = stickyAnnotArgs.Color;
- annotAttribsList[AnnotAttrib.Transparency] = stickyAnnotArgs.Transparency;
- annotAttribsList[AnnotAttrib.NoteText] = stickyAnnotArgs.StickyNote;
- annotAttribsList[AnnotAttrib.StickyIcon] = stickyAnnotArgs.IconName;
- List<AnnotHandlerEventArgs> stickyAnnotArgsList = new List<AnnotHandlerEventArgs>();
- if (stickyAnnotArgs != null)
- stickyAnnotArgsList.Add(stickyAnnotArgs);
- AddToPropertyPanel("StickyNoteProperty", "StickyNote", selectedArgs, annotAttribsList);
- return stickyAnnotArgs;
- }
- /// <summary>
- /// 矩形
- /// </summary>
- /// <param name="selectedArgs"></param>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetRect(List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- SquareAnnotArgs squareArgs = null;
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- squareArgs = new SquareAnnotArgs();
- var annotate = Settings.Default.AppProperties.Annotate;
- if (annotate != null)
- {
- squareArgs.BgColor = annotate.RectangleFillColor;
- squareArgs.LineColor = annotate.RectangleBorderColor;
- }
- else
- {
- squareArgs.LineColor = Colors.Red;
- squareArgs.BgColor = Colors.Red;
- }
- squareArgs.LineWidth = 1;
- squareArgs.Transparency = 1;
- squareArgs.LineDash = DashStyles.Solid;
- squareArgs.Content = string.Empty;
- if (squareArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(squareArgs);
- }
- }
- else
- {
- squareArgs = selectedArgs[0] as SquareAnnotArgs;
- }
- annotAttribsList[AnnotAttrib.Color] = squareArgs.LineColor;
- annotAttribsList[AnnotAttrib.FillColor] = squareArgs.BgColor;
- annotAttribsList[AnnotAttrib.LineStyle] = squareArgs.LineDash;
- annotAttribsList[AnnotAttrib.Thickness] = squareArgs.LineWidth;
- annotAttribsList[AnnotAttrib.Transparency] = squareArgs.Transparency;
- annotAttribsList[AnnotAttrib.NoteText] = squareArgs.Content;
- AddToPropertyPanel("SharpsAnnotProperty", "Rect", selectedArgs, annotAttribsList);
- return squareArgs;
- }
- /// <summary>
- /// 圆
- /// </summary>
- /// <param name="selectedArgs"></param>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetCircle(List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- CircleAnnotArgs circleAnnotArgs = null;
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- circleAnnotArgs = new CircleAnnotArgs();
- var annotate = Settings.Default.AppProperties.Annotate;
- if (annotate != null)
- {
- circleAnnotArgs.LineColor = annotate.CircleBorderColor;
- circleAnnotArgs.BgColor = annotate.CircleFillColor;
- }
- else
- {
- circleAnnotArgs.LineColor = Colors.Red;
- circleAnnotArgs.BgColor = Colors.Red;
- }
- circleAnnotArgs.LineWidth = 1;
- circleAnnotArgs.Transparency = 1;
- circleAnnotArgs.LineDash = DashStyles.Solid;
- circleAnnotArgs.Content = string.Empty;
-
- if (circleAnnotArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(circleAnnotArgs);
- }
- }
- else
- {
- circleAnnotArgs = selectedArgs[0] as CircleAnnotArgs;
- }
- annotAttribsList[AnnotAttrib.Color] = circleAnnotArgs.LineColor;
- annotAttribsList[AnnotAttrib.FillColor] = circleAnnotArgs.BgColor;
- annotAttribsList[AnnotAttrib.LineStyle] = circleAnnotArgs.LineDash;
- annotAttribsList[AnnotAttrib.Thickness] = circleAnnotArgs.LineWidth;
- annotAttribsList[AnnotAttrib.Transparency] = circleAnnotArgs.Transparency;
- annotAttribsList[AnnotAttrib.NoteText] = circleAnnotArgs.Content;
- AddToPropertyPanel("SharpsAnnotProperty", "Circle", selectedArgs, annotAttribsList);
- return circleAnnotArgs;
- }
- /// <summary>
- /// 箭头 线
- /// </summary>
- /// <param name="TagStr"></param>
- /// <param name="selectedArgs"></param>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetArrowLine(string TagStr, List<AnnotHandlerEventArgs> selectedArgs = null)
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- LineAnnotArgs lineArgs = new LineAnnotArgs();
- if (selectedArgs == null || selectedArgs.Count == 0)
- {
- var annotate = Settings.Default.AppProperties.Annotate;
- if (annotate != null)
- {
- lineArgs.LineColor = annotate.LineColor;
- }
- else
- {
- lineArgs.LineColor = Colors.Red;
- }
- lineArgs.LineColor = Colors.Red;
- lineArgs.HeadLineType = C_LINE_TYPE.LINETYPE_NONE;
- if (TagStr == "Line")
- {
- lineArgs.TailLineType = C_LINE_TYPE.LINETYPE_NONE;
- }
- else
- {
- lineArgs.TailLineType = C_LINE_TYPE.LINETYPE_ARROW;
- }
- lineArgs.LineDash = DashStyles.Solid;
- lineArgs.LineWidth = 1;
- lineArgs.Transparency = 1;
- lineArgs.Content = string.Empty;
- if (lineArgs != null)
- {
- selectedArgs = new List<AnnotHandlerEventArgs>();
- selectedArgs.Add(lineArgs);
- }
- }
- else
- {
- lineArgs = selectedArgs[0] as LineAnnotArgs;
- }
- annotAttribsList[AnnotAttrib.Color] = lineArgs.LineColor;
- annotAttribsList[AnnotAttrib.LineStart] = lineArgs.HeadLineType;
- annotAttribsList[AnnotAttrib.LineEnd] = lineArgs.TailLineType;
- annotAttribsList[AnnotAttrib.LineStyle] = lineArgs.LineDash;
- annotAttribsList[AnnotAttrib.Thickness] = lineArgs.LineWidth;
- annotAttribsList[AnnotAttrib.Transparency] = lineArgs.Transparency;
- annotAttribsList[AnnotAttrib.NoteText] = lineArgs.Content;
- AddToPropertyPanel("SharpsAnnotProperty", TagStr, selectedArgs, annotAttribsList);
- return lineArgs;
- }
- /// <summary>
- /// 图章
- /// </summary>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetStamp()
- {
- StampAnnotArgs stampAnnotArgs = new StampAnnotArgs();
- stampAnnotArgs.Opacity = 1;
- stampAnnotArgs.StampText = "APPROVED";
- stampAnnotArgs.Type = StampType.STANDARD_STAMP;
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- annotAttribsList[AnnotAttrib.Transparency] = stampAnnotArgs.Opacity;
- List<AnnotHandlerEventArgs> stampAnnotArgsList = new List<AnnotHandlerEventArgs>();
- if (stampAnnotArgs != null)
- stampAnnotArgsList.Add(stampAnnotArgs);
- AddToPropertyPanel("StampAnnotProperty", null, stampAnnotArgsList, annotAttribsList);
- return stampAnnotArgs;
- }
- /// <summary>
- /// 签名
- /// </summary>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetSignature()
- {
- AddToPropertyPanel("SignatureAnnotProperty");
- return null;
- }
- private AnnotHandlerEventArgs GetImage()
- {
- Dictionary<AnnotAttrib, object> annotAttribsList = new Dictionary<AnnotAttrib, object>();
- StampAnnotArgs stampArgs = new StampAnnotArgs();
- stampArgs.Opacity = 1;
- stampArgs.Type = StampType.IMAGE_STAMP;
- OpenFileDialog openFileDialog = new OpenFileDialog();
- openFileDialog.Filter = "Image Files(*.jpg;*.jpeg;*.png;*.bmp)|*.jpg;*.jpeg;*.png;*.bmp;";
- if (openFileDialog.ShowDialog() == true)
- {
- stampArgs.ImagePath = openFileDialog.FileName;
- }
- List<AnnotHandlerEventArgs> stampArgsList = new List<AnnotHandlerEventArgs>();
- if (stampArgs != null)
- stampArgsList.Add(stampArgs);
- AddToPropertyPanel("ImageAnnotProperty", null, stampArgsList, annotAttribsList);
- return stampArgs;
- }
- /// <summary>
- /// 内容选择
- /// </summary>
- /// <param name="annotBtn"></param>
- /// <returns></returns>
- private AnnotHandlerEventArgs GetSnapshotEdit()
- {
- SnapshotEditToolArgs snapshotArgs = new SnapshotEditToolArgs();
- //SnapshotEditMenuViewModel snapshotEditMenuViewModel = new SnapshotEditMenuViewModel();
- snapshotArgs.ControlPointColor = Colors.White;
- snapshotArgs.BgColor = Color.FromArgb(0x99, 0x00, 0x00, 0x00);
- snapshotArgs.LineColor = Color.FromArgb(0xFF, 0x47, 0x7E, 0xDE);
- SnapshotEditMenuViewModel.SnapToolArgs = snapshotArgs;
- SnapshotEditMenuViewModel.PDFViewer = PDFViewer;
- SnapshotEditMenuViewModel.SnapToolEvent -= SnapshotEditMenuViewModel_SnapToolEvent;
- SnapshotEditMenuViewModel.SnapToolEvent += SnapshotEditMenuViewModel_SnapToolEvent;
- #region to do
- //SnapshotEditMenu snapMenu = new SnapshotEditMenu();
- //snapshotArgs.ToolPanel = snapMenu;
- //SnapshotEditMenuViewModel snapshotEditMenuViewModel = (SnapshotEditMenuViewModel)snapMenu.DataContext;
- //snapshotEditMenuViewModel.SnapToolArgs = snapshotArgs;
- //snapshotEditMenuViewModel.PDFViewer = PDFViewer;
- //snapshotEditMenuViewModel.ToggleBtn = annotBtn;
- //snapshotEditMenuViewModel.SnapToolEvent += SnapshotEditMenuViewModel_SnapToolEvent;
- //SnapshotEditMenuViewModel = snapshotEditMenuViewModel;
- #endregion to do
- return snapshotArgs;
- }
- #endregion 注释工具
- #region 菜单
- private void AnnotToolMenu_Click(object sender, RoutedEventArgs e)
- {
- if (sender is MenuItem clickMenu && clickMenu.CommandParameter is AnnotCommandArgs)
- {
- AnnotCommandArgs annotCommand = clickMenu.CommandParameter as AnnotCommandArgs;
- switch (clickMenu.Tag.ToString())
- {
- case "HighLight"://字体高亮
- TextHighlightAnnotArgs highlightArgs = (TextHighlightAnnotArgs)GetHighLight();
- highlightArgs.ClientRect = annotCommand.TextRect;
- highlightArgs.Content = annotCommand.Text;
- highlightArgs.Author = Settings.Default.AppProperties.Description.Author;
- PDFViewer.SetMouseMode(MouseModes.AnnotCreate);
- PDFViewer.SetToolParam(highlightArgs);
- PDFViewer.SetMouseMode(MouseModes.PanTool);
- break;
- case "UnderLine"://下划线
- TextUnderlineAnnotArgs underlineArgs = (TextUnderlineAnnotArgs)GetUnderLine();
- underlineArgs.ClientRect = annotCommand.TextRect;
- underlineArgs.Content = annotCommand.Text;
- underlineArgs.Author = Settings.Default.AppProperties.Description.Author;
- PDFViewer.SetMouseMode(MouseModes.AnnotCreate);
- PDFViewer.SetToolParam(underlineArgs);
- PDFViewer.SetMouseMode(MouseModes.PanTool);
- break;
- case "Strikeout"://删除线
- TextStrikeoutAnnotArgs strikeoutArgs = (TextStrikeoutAnnotArgs)GetStrikeout();
- strikeoutArgs.ClientRect = annotCommand.TextRect;
- strikeoutArgs.Content = annotCommand.Text;
- strikeoutArgs.Author = Settings.Default.AppProperties.Description.Author;
- PDFViewer.SetMouseMode(MouseModes.AnnotCreate);
- PDFViewer.SetToolParam(strikeoutArgs);
- PDFViewer.SetMouseMode(MouseModes.PanTool);
- break;
- case "Freetext"://文本
- FreeTextAnnotArgs textArgs = (FreeTextAnnotArgs)GetFreetext();
- textArgs.ClientRect = annotCommand.TextRect;
- //textArgs.Transparency = 1;
- //textArgs.BgColor = Colors.Transparent;
- //textArgs.LineColor = Colors.Red;
- //textArgs.LineWidth = 2;
- textArgs.TextContent = annotCommand.Text;
- PDFViewer.CreatePageAnnot(annotCommand.PageIndex, textArgs);
- break;
- case "StickyNote"://便签
- StickyAnnotArgs stickyAnnotArgs = (StickyAnnotArgs)GetStickyNote();
- stickyAnnotArgs.ClientRect = annotCommand.TextRect;
- PDFViewer.CreatePageAnnot(annotCommand.PageIndex, stickyAnnotArgs);
- break;
- case "Rect"://矩形
- SquareAnnotArgs squareAnnotArgs = (SquareAnnotArgs)GetRect();
- squareAnnotArgs.ClientRect = annotCommand.TextRect;
- PDFViewer.CreatePageAnnot(annotCommand.PageIndex, squareAnnotArgs);
- break;
- case "Circle"://圆
- CircleAnnotArgs circleAnnotArgs = (CircleAnnotArgs)GetCircle();
- circleAnnotArgs.ClientRect = annotCommand.TextRect;
- PDFViewer.CreatePageAnnot(annotCommand.PageIndex, circleAnnotArgs);
- break;
- case "Line"://线
- LineAnnotArgs lineAnnotArgs = (LineAnnotArgs)GetArrowLine(clickMenu.Tag.ToString());
- lineAnnotArgs.ClientRect = annotCommand.TextRect;
- lineAnnotArgs.LinePoints.Add(new Point(annotCommand.TextRect.Left, annotCommand.TextRect.Top));
- lineAnnotArgs.LinePoints.Add(new Point(annotCommand.TextRect.Right, annotCommand.TextRect.Bottom));
- PDFViewer.CreatePageAnnot(annotCommand.PageIndex, lineAnnotArgs);
- break;
- case "Link"://链接
- LinkAnnotArgs linkArgs = new LinkAnnotArgs();
- linkArgs.ClientRect = annotCommand.TextRect;
- linkArgs.URI = string.Empty;
- linkArgs.LinkType = LINK_TYPE.GOTO;
- linkArgs.DestIndex = annotCommand.PageIndex;
- PDFViewer.CreatePageAnnot(annotCommand.PageIndex, linkArgs);
- BtnLinkIsChecked = true;
- List<AnnotHandlerEventArgs> lists = new List<AnnotHandlerEventArgs>();
- lists.Add(linkArgs);
- AnnotHandlerEventArgs annotArgs = GetLink(lists);
- PDFViewer.SetMouseMode(MouseModes.AnnotCreate);
- PDFViewer.SetToolParam(annotArgs);
- viewContentViewModel.IsPropertyOpen = true;
- break;
- case "OutLine":
- bool isTabItemAnnotation = IsBOTATabItemShow(out BOTAContentViewModel bOTAContentViewModel, out BOTAContent bOTAContent, "TabItemOutLine");
- if (isTabItemAnnotation == false)
- {
- bOTAContent.TabItemOutLine.IsSelected = true;
- }
- OutLineControlViewModel outLineControlViewModel = GetOutLineControlViewModel(bOTAContentViewModel, out OutLineControl outLineControl);
- if (outLineControlViewModel != null && outLineControl != null)
- {
- string str = null;
- if (string.IsNullOrEmpty(annotCommand.Text))
- {
- str = (annotCommand.PageIndex + 1).ToString();
- }
- else
- {
- str = annotCommand.Text;
- }
- OutlineNode outline = outLineControl.AddOutlineNode(str);
- CPDFOutline result = outline.Outline;
- if (result != null)
- {
- outLineControlViewModel.SetTitle(result, str);
- outLineControlViewModel.Updata(false);
- //outLineControl.IsReName = true;
- //if (outLineControl.OutlineView.SelectedItem is OutlineNode selectOutLine)
- //{
- // outLineControl.ReNameOutlineNode = outline;
- //}
- }
- }
- break;
- case "ExportPicture":
- ExportPicture_MenuItemClick();
- break;
- }
- //ShowPropertyPanel(false);
- }
- }
- private void ExportPicture_MenuItemClick()
- {
- //图片提取
- try
- {
- List<System.Drawing.Bitmap> imageList = new List<System.Drawing.Bitmap>();
- Dictionary<int, List<System.Drawing.Bitmap>> imageDict = PDFViewer?.GetSelectedImages();
- foreach (int pageIndex in imageDict.Keys)
- {
- imageList = imageDict[pageIndex];
- }
- string path = PDFViewer.Document.FileName;
- System.Windows.Forms.FolderBrowserDialog folderDialog = new FolderBrowserDialog();
- if (folderDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- int i = 1;
- int pagenum = 1;
- string choosePath = folderDialog.SelectedPath;
- string sPath = choosePath + "\\" + path + "_Extract Image";
- sPath = GetExportPathName(sPath);
- if (!Directory.Exists(sPath))
- {
- Directory.CreateDirectory(sPath);
- }
- if (Directory.Exists(sPath))
- {
- foreach (System.Drawing.Bitmap image in imageList)
- {
- foreach (var item in imageDict.Keys)
- {
- pagenum = item;
- }
- string filename = path + "_" + "Page" + (pagenum + 1).ToString() + "_" + GetNum(i);
- string savePath = System.IO.Path.Combine(sPath, filename + ".jpg");
- image.Save(savePath, System.Drawing.Imaging.ImageFormat.Jpeg);
- i++;
- }
- System.Diagnostics.Process.Start("explorer", "/select,\"" + sPath + "\"");
- }
- }
- }
- catch (Exception ex) { }
- }
- public string GetExportPathName(string path)
- {
- int i = 1;
- string outpath = path;
- while (Directory.Exists(outpath))
- {
- outpath = path + $"({i.ToString()})";
- i++;
- }
- return outpath;
- }
- private string GetNum(int num)
- {
- if (num % 10 < 1)
- {
- return "00" + num.ToString();
- }
- if (num % 10 >= 1 && num % 10 < 10)
- {
- return "0" + num.ToString();
- }
- else
- {
- return num.ToString();
- }
- }
- #region 注释右键菜单事件
- //高亮、下划线、删除
- private void HightAnnotCopyText_Menu(object obj)
- {
- if (obj != null && obj as AnnotationHandlerEventArgs != null)
- {
- var annot = (AnnotationHandlerEventArgs)obj;
- System.Windows.Clipboard.SetText(annot.Content);
- }
- }
- //更改为当前注释属性默认值
- private void AnnotDefaultValues_Menu(object obj)
- {
- if (obj != null && obj as AnnotHandlerEventArgs != null)
- {
-
- var annot = (AnnotHandlerEventArgs)obj;
- var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
- if (annot is TextHighlightAnnotArgs)
- {
- var color = (annot as TextHighlightAnnotArgs).Color;
- Settings.Default.AppProperties.Annotate.HighLightColor = color;
- HighLightColor = new SolidColorBrush(color);
- }
- else if(annot is TextUnderlineAnnotArgs)
- {
- var color = (annot as TextHighlightAnnotArgs).Color;
- Settings.Default.AppProperties.Annotate.UnderLineColor = color;
- UnderLineColor = new SolidColorBrush(color);
- }
- else if (annot is TextStrikeoutAnnotArgs)
- {
- var color = (annot as TextHighlightAnnotArgs).Color;
- Settings.Default.AppProperties.Annotate.StrikethroughColor = color;
- StrikeoutColor = new SolidColorBrush(color);
- }
- else if (annot is FreehandAnnotArgs)
- {
- var color = (annot as FreehandAnnotArgs).InkColor;
- Settings.Default.AppProperties.Annotate.FreeHandColor = color;
- }
- else if (annot is FreeTextAnnotArgs)
- {
- var color = (annot as FreeTextAnnotArgs).FontColor;
- Settings.Default.AppProperties.Annotate.TextAnnoteColor = color;
- }
- else if (annot is StickyAnnotArgs)
- {
- var color = (annot as StickyAnnotArgs).Color;
- Settings.Default.AppProperties.Annotate.NoteAnnoteColor = color;
- }
- else if (annot is SquareAnnotArgs)
- {
- var bgColor = (annot as SquareAnnotArgs).BgColor;
- Settings.Default.AppProperties.Annotate.RectangleFillColor = bgColor;
- var borderColor = (annot as SquareAnnotArgs).LineColor;
- Settings.Default.AppProperties.Annotate.RectangleBorderColor = borderColor;
- }
- else if (annot is CircleAnnotArgs)
- {
- var bgColor = (annot as CircleAnnotArgs).BgColor;
- Settings.Default.AppProperties.Annotate.CircleFillColor = bgColor;
- var borderColor = (annot as CircleAnnotArgs).LineColor;
- Settings.Default.AppProperties.Annotate.CircleBorderColor = borderColor;
- }
- else if (annot is LineAnnotArgs)
- {
- var color = (annot as LineAnnotArgs).LineColor;
- Settings.Default.AppProperties.Annotate.LineColor = color;
- }
- Settings.Default.Save();
- }
- }
- //更改颜色
- private void AnnotColorPalette_Menu(object obj)
- {
- if (obj != null && obj as AnnotHandlerEventArgs != null)
- {
- var annot = obj as AnnotHandlerEventArgs;
- var item = new ColorDropBoxPop();
- item.DataContext = annot;
- item.ColorSelected -= AnnotMenu_ColorSelected;
- item.ColorSelected += AnnotMenu_ColorSelected;
- System.Windows.Controls.Primitives.Popup popup = new System.Windows.Controls.Primitives.Popup();
- popup.Child = item;
- popup.PlacementRectangle = new Rect(Mouse.GetPosition(App.Current.MainWindow), new Size(item.Width, item.Height));
- popup.Placement = System.Windows.Controls.Primitives.PlacementMode.Bottom;
- popup.IsOpen = true;
- }
- }
-
- private void AnnotMenu_ColorSelected(object sender, Color e)
- {
- if (sender != null)
- {
- var annot = (sender as FrameworkElement).DataContext as AnnotHandlerEventArgs;
- if (annot != null)
- {
- if(annot is FreehandAnnotArgs || annot is StickyAnnotArgs || annot is LineAnnotArgs)
- {
- var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
- AnnotEvent?.UpdateAttrib(AnnotAttrib.Color, e);
- AnnotEvent?.UpdateAnnot();
- }
- else if(annot is FreeTextAnnotArgs)
- {
- var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
- AnnotEvent?.UpdateAttrib(AnnotAttrib.FontColor, e);
- AnnotEvent?.UpdateAnnot();
- }
- else if (annot is SquareAnnotArgs || annot is CircleAnnotArgs)
- {
- var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
- AnnotEvent?.UpdateAttrib(AnnotAttrib.FillColor, e);
- AnnotEvent?.UpdateAnnot();
- }
- }
- }
- }
- //添加笔记
- private void AnnotAddNoteText_Menu(object obj)
- {
- if (obj != null)
- {
- var annot = obj as AnnotHandlerEventArgs;
- if (annot != null)
- {
- DialogParameters value = new DialogParameters();
- value.Add(ParameterNames.Annotation, annot);
- dialogs.ShowDialog(DialogNames.AddAnnotationDialog, value, e =>
- {
- if (e.Result == ButtonResult.OK && e.Parameters != null)
- {
- PDFViewer.UndoManager.CanSave = true;
- if (e.Parameters.ContainsKey(ParameterNames.Annotation) && e.Parameters.ContainsKey(ParameterNames.AnnotEvent))
- {
- }
- }
- });
- }
- }
- }
- //手绘
- private void FreeHandLineStyle_Menu(object obj)
- {
- if (obj != null)
- {
- }
- }
- //文本
- private void FreeTextFontFamily_Menu(object obj)
- {
- if (obj != null)
- {
- }
- }
- private void FreeTextAglin_Menu(object obj)
- {
- if (obj != null)
- {
- if (obj is System.Windows.Controls.RadioButton)
- {
- var btn = obj as System.Windows.Controls.RadioButton;
- var annot = btn.DataContext as AnnotHandlerEventArgs;
- if (annot != null)
- {
- var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
- if (btn.Tag.ToString() == "Left")
- {
- AnnotEvent?.UpdateAttrib(AnnotAttrib.TextAlign, TextAlignment.Left);
- }
- else if(btn.Tag.ToString() == "Center")
- {
- AnnotEvent?.UpdateAttrib(AnnotAttrib.TextAlign, TextAlignment.Center);
- }
- else if (btn.Tag.ToString() == "Right")
- {
- AnnotEvent?.UpdateAttrib(AnnotAttrib.TextAlign, TextAlignment.Right);
- }
- AnnotEvent?.UpdateAnnot();
- }
- }
- }
- }
- //便签
- private void StrikeNoteEditStrike_Menu(object obj)
- {
- if (obj != null)
- {
- }
- }
- //形状
- private void ShapeLineStyle_Menu(object obj)
- {
- if (obj != null)
- {
- if( obj is System.Windows.Controls.RadioButton)
- {
- var btn = obj as System.Windows.Controls.RadioButton;
- var annot = btn.DataContext as AnnotHandlerEventArgs;
- if (annot != null)
- {
- var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
- if (btn.Tag.ToString() == "solid")
- {
- var dashStyle = AnnotPropertyPanel.GetLineDashStyle(true);
- AnnotEvent?.UpdateAttrib(AnnotAttrib.LineStyle, dashStyle);
- }
- else
- {
- var dashStyle = AnnotPropertyPanel.GetLineDashStyle(false);
- AnnotEvent?.UpdateAttrib(AnnotAttrib.LineStyle, dashStyle);
- }
- AnnotEvent?.UpdateAnnot();
- }
- }
- }
- }
- private void ShapeLineDirect_Menu(object obj)
- {
- if (obj != null)
- {
- if(obj is MenuItem)
- {
- var btn = obj as MenuItem;
- var annot = btn.DataContext as LineAnnotArgs;
- var AnnotEvent = AnnotAttribEvent.GetAnnotAttribEvent(annot, annot.GetAnnotAttrib());
- if (btn.Tag.ToString() == "ver")
- {
- annot.SetLineVertical();
- }
- else
- {
- annot.SetLineHorizontal();
- }
-
- }
- }
- }
- private void ShapeDefaultValues_Menu(object obj)
- {
- if (obj != null)
- {
- }
- }
- //图章
- private void StampExportPicture_Menu(object obj)
- {
- if (obj != null)
- {
- }
- }
-
- #endregion 注释右键菜单事件
- #endregion 菜单
- }
- }
|