为什么app在Windows 10中运行,pivot.item的标题会向上移动并导致文本被截断?

时间:2015-11-03 22:39:30

标签: windows-phone-8.1 windows-10-mobile pivotitem

我的Windows Phone 8.1应用程序在8.1中运行良好。但是,最近我试图将我的代码移动到Windows 10,我发现所有的pivot.item标题似乎都向上移动,文本已被切断。任何的想法?我想知道是否有任何方法可以将标题设置到中心以避免此问题。 enter image description here

1 个答案:

答案 0 :(得分:1)

最后我尝试添加一些填充来解决这个问题

           <PivotItem.Header>
                <Grid>
                    <TextBlock Padding="0,10,0,0"  Text="{Binding LocalizedResources.WP_Inbox_PivotItemImportant, Source={StaticResource LocalizedStrings}}"/>
                </Grid>
            </PivotItem.Header>