PDFiumViewer 是一个基于 Chromium 的 PDF 阅读器控件,用于在 WPF、WinForms 和 UWP 应用程序中显示 PDF 文件。要在 C# 项目中使用 PDFiumViewer 加载 PDF 文件,请按照以下步骤操作:
首先,确保已将 PDFiumViewer 控件添加到项目中。如果尚未添加,请在 NuGet 包管理器中搜索 PDFiumViewer 并安装。
在 XAML 文件中添加 PDFiumViewer 控件:
<Window x:Class="YourNamespace.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:pdfiumviewer="clr-namespace:PdfiumViewer;assembly=PdfiumViewer.Wpf"
Title="MainWindow" Height="450" Width="800">
<Grid>
<pdfiumviewer:PdfiumViewer x:Name="pdfViewer" />
</Grid>
</Window>
using System.Windows;
using PdfiumViewer;
namespace YourNamespace
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
LoadPdf("path/to/your/pdf/file.pdf");
}
private void LoadPdf(string pdfFilePath)
{
pdfViewer.LoadFile(pdfFilePath);
}
}
}
将 path/to/your/pdf/file.pdf
替换为您要加载的 PDF 文件的实际路径。PDFiumViewer 控件将自动处理文件的加载和显示。