1.引用Nuget包:PdfiumViewer
2.Xaml代码,需要使用<WindowsFormsHost>标签,可能这个包是为winform设计的。
XML
xmlns:pdfium="clr-namespace:PdfiumViewer;assembly=PdfiumViewer"
<WindowsFormsHost>
<pdfium:PdfViewer x:Name="pdfViewer" Width="300" Height="300"/>
</WindowsFormsHost>
3.后台代码,非常简单,绑定一下PDF文件路径即可。
cs
public PrintingPDF(string PDFPath)
{
InitializeComponent();
try
{
var document = PdfDocument.Load(PDFPath);
pdfViewer.Document = document;
}
catch (Exception ex)
{
}
}