为什么PDFTron PDFViewCtrl.Update()会抛出AccessViolationException

时间:2015-06-23 14:17:45

标签: c# windows-store-apps pdftron

我在Windows商店应用项目中使用PDFTron PDF注释库。有时当我尝试将以前完成的注释(另存为单独的文件)加载到PDFView控件中时,它会抛出AccessViolationException。 请帮忙。

在我的页面上,这是代码:

await ImportAnnotations(param.Doc, agendaItem);
this.PDFViewCtrl.Update(); //this is where the exception throws

这是ImportAnnotations功能。

private async Task<PDFDoc> ImportAnnotations(PDFDoc doc, AgendaItem GlobalSelectdAgendaItem)
    {
        try
        {
            if (doc != null && GlobalSelectdAgendaItem != null)
            {
                StorageFolder documentsFolder = await StorageFolder.GetFolderFromPathAsync(Path.Combine(ApplicationData.Current.LocalFolder.Path, Global.UserId.ToString(), ApplicationConstants.PDF));
                string annotationFileName = GlobalSelectdAgendaItem.ID + "_" + Global.UserId.ToString() + "_" + GlobalSelectdAgendaItem.VersionId + ".xfdf";

                // load XFDF annotations
                var anntotationFile = await documentsFolder.TryGetItemAsync(annotationFileName) as IStorageFile;
                FDFDoc fdfDoc = null;
                if (anntotationFile != null)
                {
                    fdfDoc = await FDFDoc.CreateFromXFDFAsync(Path.Combine(documentsFolder.Path, annotationFileName));
                }
                else
                {
                    return doc;
                }

                // load PDF with which to merge the annotations
                doc.InitSecurityHandler();

                // merge in the annotations
                doc.FDFMerge(fdfDoc);
                doc.RefreshFieldAppearances();
            }
        }
        catch (Exception)
        {
        }
        return doc;
    }

1 个答案:

答案 0 :(得分:4)

您正在后台线程中呈现文档时修改文档。在线程上写入共享数据,同时还要读取它们,可能会在遇到时导致随机错误。

您需要使用this.PDFViewCtrl.DocLock(true)this.PDFViewCtrl.DocUnlock()

开始和完成ImportAnnotations功能

See this forum post for more details on this topic