gpt4 book ai didi

wpf - 在 WPF 中显示大文本的最佳方式?

转载 作者:行者123 更新时间:2023-12-04 13:47:18 25 4
gpt4 key购买 nike

我需要在 中显示大量的文本数据WPF 代码。首先我尝试使用 TextBox (当然,它的渲染速度太慢了)。现在我正在使用 FlowDocument ——而且它很棒——但最近我有另一个要求:文本不应该连字符。据说它不是( document.IsHyphenationEnabled = false )但我仍然没有看到我宝贵的水平滚动条。如果我放大比例文本是...连字符。

alt text

public string TextToShow
{
set
{
Paragraph paragraph = new Paragraph();
paragraph.Inlines.Add(value);

FlowDocument document = new FlowDocument(paragraph);
document.IsHyphenationEnabled = false;

flowReader.Document = document;
flowReader.IsScrollViewEnabled = true;
flowReader.ViewingMode = FlowDocumentReaderViewingMode.Scroll;
flowReader.IsPrintEnabled = true;
flowReader.IsPageViewEnabled = false;
flowReader.IsTwoPageViewEnabled = false;
}
}

这就是我创建 FlowDocument 的方式 - 这是我的 WPF 控件的一部分:
<FlowDocumentReader Name="flowReader" Margin="2 2 2 2" Grid.Row="0" />

没有犯罪 =))

我想知道如何驯服这只野兽 - 谷歌搜索没有任何帮助。或者你有一些替代方法来显示兆字节的文本,或者文本框有一些我只需要启用的虚拟化功能。无论如何,我会很高兴听到您的回复!

最佳答案

它真的是包装而不是连字符。可以通过将 FlowDocument.PageWidth 设置为合理值来克服这一问题,唯一的问题是如何确定该值。
Omer 推荐了这个食谱 msdn.itags.org/visual-studio/36912/但我不喜欢使用 TextBlock 作为文本测量工具。更好的方法:

            Paragraph paragraph = new Paragraph();
paragraph.Inlines.Add(value);


FormattedText text = new FormattedText(value, CultureInfo.CurrentCulture, FlowDirection.LeftToRight, new Typeface(paragraph.FontFamily, paragraph.FontStyle, paragraph.FontWeight, paragraph.FontStretch), paragraph.FontSize, Brushes.Black );

FlowDocument document = new FlowDocument(paragraph);
document.PageWidth = text.Width*1.5;
document.IsHyphenationEnabled = false;

Omer - 感谢您的指导。

关于wpf - 在 WPF 中显示大文本的最佳方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3653182/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com