Reputation: 311
In silverlight,
I sofar not managed to find someone with the exact same problem as me.
Upvotes: 3
Views: 3136
Reputation: 526
AnthonyWJones is probably correct on this.
PageScrollViewer will override some scroll settings of TextBox (as Child of ScrollViewer). If you want TextBox's scroll bar and wrapping come to take effects, you need to disable Horizontal scroll bar of scroll viewer:
<ScrollViewer x:Name="PageScrollViewer" Style="{StaticResource PageScrollViewerStyle}" HorizontalScrollBarVisibility="Disabled">
Upvotes: 1
Reputation: 189437
Stop using a scroll viewer and set the TextBox
VerticalScrollBarVisibility
property to Auto
.
Upvotes: 1