在Texblock和ScrollViewer中放入大文本

时间:2012-02-02 13:28:35

标签: windows-phone-7 windows-phone-7.1 scrollviewer textblock

我有这个PivotItem:

<controls:PivotItem Header="Biografie">
       <StackPanel>
            <ScrollViewer x:Name="textScroller" Margin="10,0,10,0">
                <TextBlock Text="{Binding Biography}"
                           TextWrapping="Wrap"/>
            </ScrollViewer>
        </StackPanel>
 </controls:PivotItem>

在传记中我有大文本(约1575个字符)。我可以使用scrollviewer滚动,但我没有看到所有文本。它只是在结束前停止几句话。我发现文本块不会显示超过5000个字符或类似的东西,但我要少得多。谁知道我哪里有问题?感谢

1 个答案:

答案 0 :(得分:3)

高度限制为2048像素。看看这个解决方法:Creating Scrollable TextBlock for WP7