I have a TextBlock in WPF. I write many lines to it, far exceeding its vertical height. I expected a vertical scroll bar to appear automatically when that happens, but it didn't. I tried to look for a scroll bar property in the Properties pane, but could not find one.

How can I a vertical scroll bar created automatically for my TextBlock once its contents exceed its height?

Clarification: I would rather do it from the designer and not by directly writing to the XAML.

link|improve this question

71% accept rate
Upon re-reading this question, I notice you mention TextBlock twice and TextBox once. – Drew Noakes Mar 25 '11 at 12:51
feedback

2 Answers

up vote 55 down vote accepted

Wrap it in a scroll viewer:

<ScrollViewer>
    <TextBlock />
</ScrollViewer>

NOTE this answer applies to a TextBlock (a read-only text element) as asked for in the original question.

If you want to show scroll bars in a TextBox (an editable text element) then use the ScrollViewer attached properties:

<TextBox ScrollViewer.HorizontalScrollBarVisibility="Disabled"
         ScrollViewer.VerticalScrollBarVisibility="Auto" />

Valid values for these two properties are Disabled, Auto, Hidden and Visible.

link|improve this answer
1  
How do I do it from the designer? – Bab Yogoo Jul 28 '09 at 7:19
3  
Sorry I am not sure, I don't use the WPF designer. I think if you add the XAML directly, the designer will update itself. – Drew Noakes Jul 28 '09 at 8:04
4  
How do I autoscroll when content overflows? – Robin Maben Feb 3 '11 at 15:43
1  
@conqenator TextBox.ScrollToEnd(); – Petey B Feb 4 '11 at 18:51
1  
@Greg, the question is about TextBlock not TextBox. – Drew Noakes Mar 25 '11 at 12:46
show 2 more comments
feedback

can use the following now:

    <TextBox Name="myTextBox" 
             ScrollViewer.HorizontalScrollBarVisibility="Auto"
             ScrollViewer.VerticalScrollBarVisibility="Auto"
             ScrollViewer.CanContentScroll="True">SOME TEXT</TextBox>
link|improve this answer
2  
Thanks! This worked for me better than the above answer. – jjnguy Dec 16 '10 at 18:47
4  
@jjnguy, I interpreted the original question as being about TextBlock not TextBox (as in the title and opening line), but the second paragraph mentioned TextBox. To be clear, this answer is definitely the best approach for text boxes, and mine is the best I know of for text blocks :) – Drew Noakes Mar 25 '11 at 12:47
@Drew, ah, makes sense. Thanks for the clarification. – jjnguy Mar 25 '11 at 13:37
Worked better for me too. For a TextBox at least, when using the ScrollViewer around it, like in the accepted answer, the TextBox' borders disappear, because the whole control is scrolled, and not only its contents. – Fueled Jan 19 at 16:43
feedback

Your Answer

 
or
required, but never shown

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