如何在WPF c#中设置richtextbox中文本的行间距
本文关键字:文本 中文 richtextbox 设置 WPF | 更新日期: 2023-09-27 18:07:17
当我使用richtextbox进行文本编辑时,有一个巨大的行间距,但是当我在FlowDocument中打开相同的文本/文件时,它看起来非常好。是否有一个简单的方法来改变行间距在richtextbox以及与FlowDocument的匹配?
Paragraph paragraph = new Paragraph();
paragraph.Inlines.Add(dataContent);
FlowDocument document = new FlowDocument(paragraph);
selectedRTB.Document = document;
selectedTabItem.Content = selectedRTB;
<RichTextBox >
<FlowDocument>
<Paragraph LineHeight="50">
Paragraph1
</Paragraph>
<Paragraph LineHeight="20">
Paragraph2
</Paragraph>
</FlowDocument >
</RichTextBox>