#925 – Scrolling Through TextBox Text That Doesn’t Wrap

Even when text in a TextBox does not wrap to fill multiple lines, the text is still contained in the TextBox and you can scroll through it or select it.

    <TextBox Text="{Binding CosbyQuote}"
        TextWrapping="NoWrap"
        Height="60" Margin="5"/>

925-001
925-002
925-003

Advertisement