.Net包含一个名为DocumentViewer
的好控件。它还提供了一个子控件,用于在加载的文档中查找文本(这至少是它应该做的事情)。
当插入FixedPage
的对象作为DocumentViewer
的文档源时,查找功能只是找不到任何内容。甚至不是单个字母。我还没试过FlowDocument
,
由于DocumentViewer
的文档没有那么有用,网上的资源实际上并不存在,我现在想问一下stackoverflow社区:
使用DocumentViewer
文档获取WPF FixedPage
的查找功能需要什么?
[顺便说一句,我不会对ControlTemplates
]
DocumentViewer
答案 0 :(得分:8)
我在FixedDocuments中遇到了同样的问题。如果您将FixedDocument转换为XPS文档,那么它可以正常工作。
从FixedDocument在内存中创建XPS Document然后在DocumentViewer中显示的示例。
// Add to xaml: <DocumentViewer x:Name="documentViewer" />
// Add project references to "ReachFramework" and "System.Printing"
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.IO;
using System.IO.Packaging;
using System.Windows.Xps.Packaging;
namespace WpfApplication1
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
// Set up demo FixedDocument containing text to be searched
var fixedDocument = new FixedDocument();
var pageContent = new PageContent();
var fixedPage = new FixedPage();
fixedPage.Children.Add(new TextBlock() { Text = "Demo document text." });
pageContent.Child = fixedPage;
fixedDocument.Pages.Add(pageContent);
// Set up fresh XpsDocument
var stream = new MemoryStream();
var uri = new Uri("pack://document.xps");
var package = Package.Open(stream, FileMode.Create, FileAccess.ReadWrite);
PackageStore.AddPackage(uri, package);
var xpsDoc = new XpsDocument(package, CompressionOption.NotCompressed, uri.AbsoluteUri);
// Write FixedDocument to the XpsDocument
var docWriter = XpsDocument.CreateXpsDocumentWriter(xpsDoc);
docWriter.Write(fixedDocument);
// Display XpsDocument in DocumentViewer
documentViewer.Document = xpsDoc.GetFixedDocumentSequence();
}
}
}
答案 1 :(得分:1)
我在richtextbox中搜索文本时遇到了麻烦,这太慢了。每次我想搜索时,我所做的就是缩小xaml。我提高了几个数量级。
这是一个基于Chris Anderson book的一部分的大解决方法。
干杯