PDFiumViewer 是一个基于 Chromium 的 PDF 阅读器控件,用于在 WPF、WinForms 和 UWP 应用程序中显示 PDF 文件
Install-Package PDFiumViewer
在 XAML 文件中:
<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">
...
</Window>
在 C# 文件中:
using PdfiumViewer;
<pdfiumviewer:PdfViewer x:Name="pdfViewer" />
public MainWindow()
{
InitializeComponent();
// 加载 PDF 文件
pdfViewer.LoadFile("path/to/your/pdf/file.pdf");
}
pdfViewer.Document.SetCurrentPage(1); // 跳转到第一页
pdfViewer.ZoomLevel = 1.5; // 设置缩放级别为 150%
pdfViewer.Document.SetRotation(PdfiumViewer.Rotation.On90); // 顺时针旋转 90 度
pdfViewer.MouseUp += PdfViewer_MouseUp;
private void PdfViewer_MouseUp(object sender, MouseButtonEventArgs e)
{
pdfViewer.ContextMenu.IsOpen = true;
}
这只是 PDFiumViewer 控件的基本用法。您可以根据项目需求进一步探索其功能和事件。更多详细信息和示例,请参阅官方文档:https://github.com/pvginkel/PdfiumViewer。