소스 검색

ComPDFKit.Demo(win) - 修复创建测量注释时,点到其他测量注释崩溃的问题

TangJinZhou 1 주 전
부모
커밋
943b799d31
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Demo/Examples/Compdfkit.Controls/Measure/MeasureControl.xaml.cs

+ 2 - 1
Demo/Examples/Compdfkit.Controls/Measure/MeasureControl.xaml.cs

@@ -282,10 +282,11 @@ namespace ComPDFKit.Controls.Measure
 
         private void SetMeasureInfoPanel(CPDFAnnotation annot,AnnotParam param = null)
         {
-            if (annot == null)
+            if (annot == null || !annot.IsValid())
             {
                 return;
             }
+
             try
             {
                 if (annot.Type == C_ANNOTATION_TYPE.C_ANNOTATION_LINE)