|
@@ -1,4 +1,5 @@
|
|
|
-using compdfkit_tools.Form.Property;
|
|
|
+using compdfkit_tools.Annotation.PDFAnnotationPanel.PDFAnnotationUI;
|
|
|
+using compdfkit_tools.Form.Property;
|
|
|
using ComPDFKitViewer.AnnotEvent;
|
|
|
using ComPDFKitViewer.PdfViewer;
|
|
|
using System;
|
|
@@ -38,7 +39,7 @@ namespace compdfkit_tools.Form
|
|
|
public void SetPropertyForType(WidgetArgs Args, AnnotAttribEvent e)
|
|
|
{
|
|
|
currentPanel = null;
|
|
|
- if (Args==null||e==null)
|
|
|
+ if (Args==null)
|
|
|
{
|
|
|
SetAnnotationPanel(currentPanel);
|
|
|
return;
|
|
@@ -76,6 +77,9 @@ namespace compdfkit_tools.Form
|
|
|
currentPanel = listBoxProperty;
|
|
|
break;
|
|
|
case ComPDFKit.PDFAnnotation.Form.C_WIDGET_TYPE.WIDGET_SIGNATUREFIELDS:
|
|
|
+ CPDFSignatureUI signatureProperty = new CPDFSignatureUI();
|
|
|
+ //signatureProperty.SetProperty(Args, e);
|
|
|
+ currentPanel = signatureProperty;
|
|
|
break;
|
|
|
case ComPDFKit.PDFAnnotation.Form.C_WIDGET_TYPE.WIDGET_UNKNOWN:
|
|
|
break;
|