没有显示完整的文章

时间:2014-01-23 12:18:56

标签: xaml windows-phone-8

我在视图中有一些很长的文章。所以我创建了一个TextBlock并将Text与Content属性绑定在一起。

的Xaml:

<Grid Margin="12,24,12,0"
              Background="White">
            <TextBlock FontSize="{StaticResource PhoneFontSizeExtraLarge}"
                       FontFamily="{StaticResource PhoneFontFamilySemiLight}"
                       Foreground="Black"
                       Text="{Binding Column.Title}"
                       TextWrapping="Wrap"
                       Margin="0,0,0,12"
                       VerticalAlignment="Top" />
            <ScrollViewer Margin="0,62,0,10">
                <TextBlock FontSize="{StaticResource PhoneFontSizeMediumLarge}"
                           Text="{Binding Column.Content}"
                           TextWrapping="Wrap" />
            </ScrollViewer>
        </Grid>

文章的最后一段:

enter image description here

问题在于它没有显示最后一段O_o:

enter image description here

问题是什么?我该如何解决?

1 个答案:

答案 0 :(得分:1)

  

此行为的原因是任何必须在大于2048x2048像素的区域之外显示的元素都将被平台裁剪。

也许这篇文章可以帮助您:Creating Scrollable TextBlock for WP7.