I am using a RichTextBox in WPF, and am trying to set the default paragraph spacing to 0 (so that there is no paragraph spacing). While I could do this in XAML, I would like to achieve it programmatically if possible. Any ideas?

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

Using Line Height

RichTextBox rtb = new RichTextBox();    
Paragraph p = rtb.Document.Blocks.FirstBlock as Paragraph;    
p.LineHeight = 10;
link|improve this answer
This is not enough if they can change font size. – Donnelle Nov 28 '08 at 6:35
I'm trying to get LineHeight, but it is always NaN. Any ideas? – invisible Jan 6 at 14:35
feedback

I did it with style (pun indented)

<RichTextBox  Margin="0,51,0,0" Name="mainTextBox" >
        <RichTextBox.Resources>
            <Style TargetType="{x:Type Paragraph}">
                <Setter Property="Margin" Value="0"/>
            </Style>
        </RichTextBox.Resources>
    </RichTextBox>
link|improve this answer
I like this solution the best. Not only because it is done with style, but because it is DONE with style. – David Basarab Jun 12 '09 at 12:49
Nice solution, but won't you have to use code if you are formatting a selection, rather than all text in the box? – David Veeneman Mar 22 '10 at 15:26
you can do styles with code, too. – moogs Mar 22 '10 at 16:52
1  
Thanks so much for this! I hate how RichTextBox inserts an extra "line" on Enter, I find it so unfamiliar, and was dreading the solution would be incredibly difficult. Boy am I relieved! – chaiguy May 30 '10 at 2:08
For anyone who finds this and is trying to do this against Windows Phone 7, the Margin property isn't available. <LineBreak/> ... – James Skemp Apr 2 at 0:58
feedback

Close, so you got the points. Actually it turned out to be setting the margin,

p.Margin = new Thickness(0);
link|improve this answer
feedback

In C# 2008 WAP

richtextbox1.SelectionCharOffset =
    -1 * ( Convert.ToInt32(R223.Txt_Space_Before.Text) * 100);

or

richtextbox1.SelectionCharOffset =
    Convert.ToInt32(R223.Txt_Space_Before.Text) * 100;

can be used for Line Spacing.

This is the only way you can have line height spacing.

link|improve this answer
feedback
<RichTextBox  Height="250" Width="500" VerticalScrollBarVisibility="Auto" TextWrapping="Wrap" IsReadOnly="True" >
                    <Paragraph>

                       XYZ

                        <LineBreak></LineBreak>
                    </Paragraph>
</RichTextBox>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.