Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用PDFsharp在我的 C# 应用程序中创建 PDF 文件。它工作得很好,但我没有找到如何创建超过一页的预览。我可以轻松创建和保存具有多个页面的文档,并且嵌入PagePreview到我的表单中也可以正常工作。
PagePreview
但是如何在预览中显示(和绘制)多个页面?
有没有办法将另一个XGraphics对象传递给关联RenderEvent函数(将从文档(XGraphics.FromPdfPage(...))中的第二页创建)?
XGraphics
RenderEvent
XGraphics.FromPdfPage(...)
RenderEvent 必须知道要呈现哪个页面。您的应用程序必须知道有多少页面以及哪个页面是当前页面。
我们正在使用 MigraDoc 创建 PDF 文件,并且预览会自动处理多个页面。