是的,C#的PdfiumViewer控件可以搜索文本。以下是一個簡單的示例,演示了如何使用PdfiumViewer控件在PDF文檔中搜索文本:
首先,確保已將PdfiumViewer控件添加到項目中。然后,使用以下代碼在PDF文檔中搜索文本:
using System;
using System.Threading.Tasks;
using PdfiumViewer;
using System.Windows;
namespace PdfiumViewerExample
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
LoadPdf("path/to/your/pdf/file.pdf");
}
private async void LoadPdf(string pdfPath)
{
using (var pdfDocument = await PdfiumViewer.LoadDocumentAsync(pdfPath))
{
var searchText = "example text";
var results = await pdfDocument.SearchTextAsync(searchText);
if (results.Count > 0)
{
MessageBox.Show($"Found {results.Count} occurrences of '{searchText}'.");
}
else
{
MessageBox.Show($"No occurrences of '{searchText}' found.");
}
}
}
}
}
在這個示例中,我們首先加載PDF文檔,然后使用SearchTextAsync
方法搜索指定的文本。如果找到了匹配項,將顯示一個包含匹配項數量的對話框。否則,將顯示一個未找到匹配項的對話框。