在ListBoxItem中对齐TextBlock

时间:2011-04-11 15:10:19

标签: windows-phone-7 textblock listboxitem text-alignment

我正在开发 Windows Phone 7 应用程序。

我想在ListBoxItem中垂直居中一个文本块。这是我的XAML代码:

<ListBoxItem x:Name="SingleGameItem" Height="79" Margin="10,5">
    <TextBlock HorizontalAlignment="Center" Height="31" Margin="5" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Center" Width="431" TextAlignment="Center"/>
</ListBoxItem>

我该怎么做?

1 个答案:

答案 0 :(得分:0)

解决方案是:

<ListBox x:Name="Options" Margin="12,8,8,8" Grid.Row="1">
    <ListBoxItem x:Name="SingleGameItem" Height="79" Margin="10,5" VerticalAlignment="Center">
        <TextBlock HorizontalAlignment="Center" Height="31" Margin="5" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Center" Width="431" TextAlignment="Center"/>
    </ListBoxItem>
</ListBox>

对不起。