Windows 8 ListBox TextAlignment不起作用

时间:2012-11-08 19:39:10

标签: c# windows-8

我有一个ListBox - ListBox.ItemTemplate - DataTemplate xaml设置,我试图将文本置于ListBox(TextBlock)中心。 TextAlignment属性似乎不起作用。有任何想法吗?这是我的代码:

  <ListBox x:Name="listBox1" HorizontalAlignment="Left" Height="520" Margin="190,220,0,0" VerticalAlignment="Top" Width="295" SelectionChanged="listBox1_SelectionChanged" FontSize="20" FontWeight="Bold" >
        <ListBox.ItemTemplate>
            <DataTemplate>
                <TextBlock Text="{Binding name}" FontSize="25" Foreground="Black" TextAlignment="Center"/>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>

0 个答案:

没有答案