我试图在 WPF RichTextBox 控件中显示大量数据。我的数据包含空格字符。有一个默认的自动换行行为,它不允许“单词”被拆分并显示在更多行上。
此行为由空格字符、问号、句号或任何其他句子/单词分隔符触发。在下面的示例中,如果将空格字符替换为字母(例如:“X”),所有内容都将按预期显示。由于没有找到分隔符,因此允许将大“单词”截断并显示在多行上。
有没有办法禁用这个单词/句子换行行为?
这是 XAML 代码:
<Window x:Class="StackOverQuestion_TextBoxWrap.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="535">
<Grid>
<RichTextBox Name="RichTextBox" />
</Grid>
</Window>
这是后面的cs代码:
public MainWindow()
{
InitializeComponent();
Random rnd = new Random();
RichTextBox.FontFamily = new System.Windows.Media.FontFamily( "Lucida Console" );
Paragraph par = new Paragraph();
for ( int i = 0 ; i < 6000 ; i++ )
{
Run run = new Run();
run.Text = rnd.NextDouble().ToString() + " " ;
par.Inlines.Add( run );
}
RichTextBox.Document.Blocks.Add( par );
}
不希望的包装行为:(请注意线的不同长度)
0.562230281327958 0.269015421750497 0.130114109315963 0.527640242375266 0.592048898149305
0.73868335026255 0.478530279117883 0.939313878276997 0.890535918479104 0.00047110533363703
0.546423877378192 0.780972927241108 0.697112546626997 0.66897076306351 0.634957212319112
0.498651245375467 0.808829494662969
所需的包装行为:(请注意相同长度的行)
0.562230281327958 0.269015421750497 0.130114109315963 0.527640242375266 0.592048898149305
0.73868335026255 0.478530279117883 0.939313878276997 0.890535918479104 0.0004711053336370
3 0.546423877378192 0.780972927241108 0.697112546626997 0.66897076306351 0.63495721231911
2 0.498651245375467 0.808829494662969