我在XAML文件中跟随了段落的FlowDocument:
<FlowDocumentScrollViewer ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto">
<FlowDocument Name="fDocument" PagePadding="10" FontFamily="Segoe UI" FontSize="22">
<Paragraph Name="fdParagraph">
Those who have denied the reality of moral distinctions, may be
ranked among the disingenuous disputants; nor is it conceivable,
that any human creature could ever seriously believe, that all
characters and actions were alike entitled to the affection and
regard of everyone. The difference, which nature has placed
between one man and another, is so wide, and this difference is
still so much farther widened, by education, example, and habit,
that, where the opposite extremes come at once under our
apprehension, there is no scepticism so scrupulous, and scarce
any assurance so determined, as absolutely to deny all
distinction between them. Let a man's insensibility be ever so
great, he must often be touched with the images of Right and
Wrong; and let his prejudices be ever so obstinate, he must
observe, that others are susceptible of like impressions. The
only way, therefore, of converting an antagonist of this kind, is
to leave him to himself.
</Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
有时,我可能会有更大的文本内容,这些内容无法适合当前的视图端口。
是否可以以及如何将垂直滚动条移动到发现找到单词的视口?
答案 0 :(得分:3)
要执行此操作,您需要TextPointer
中FlowDocument
的垂直位置,并调用ScrollViewer
方法ScrollToVerticalOffset
。
简而言之,这就是:
public static class FlowDocumentExtensions
{
public static void ScrollToWord(
this FlowDocument flowDocument,
ScrollViewer scrollViewer,
string word)
{
var currentText = flowDocument.ContentStart;
while (true)
{
TextPointer nextText =
currentText.GetNextContextPosition(
LogicalDirection.Forward);
if (nextText == null)
return;
TextRange txt = new TextRange(currentText, nextText);
int index = txt.Text.IndexOf(word, StringComparison.Ordinal);
if (index > 0)
{
TextPointer start = currentText.GetPositionAtOffset(index);
if (start != null)
{
var rect = start.GetCharacterRect(
LogicalDirection.Forward);
scrollViewer.ScrollToVerticalOffset(rect.Y);
}
return;
}
currentText = nextText;
}
}
}
如果您想了解如何从ScrollViewer
获取FlowDocument
:Scroll a WPF FlowDocumentScrollViewer from code?