本文主要是介绍WPF 使用PdfiumViewer实现PDF预览与打印,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.引用Nuget包:PdfiumViewer
2.Xaml代码,需要使用<WindowsFormsHost>标签,可能这个包是为winform设计的。
xmlns:pdfium="clr-namespace:PdfiumViewer;assembly=PdfiumViewer"<WindowsFormsHost><pdfium:PdfViewer x:Name="pdfViewer" Width="300" Height="300"/></WindowsFormsHost>
3.后台代码,非常简单,绑定一下PDF文件路径即可。
public PrintingPDF(string PDFPath){InitializeComponent();try{var document = PdfDocument.Load(PDFPath);pdfViewer.Document = document;}catch (Exception ex){}}
这篇关于WPF 使用PdfiumViewer实现PDF预览与打印的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!