将ListBlock置于ListBox.ItemTemplate中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将ListBlock置于ListBox.ItemTemplate中相关的知识,希望对你有一定的参考价值。
我正在开发一个Windows Phone应用程序。
我有以下XAML代码:
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<ListBox x:Name="GameList" Margin="12" Grid.Row="1">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Margin="10,10,10,5" Height="67" HorizontalAlignment="Center" VerticalAlignment="Center" >
<TextBlock Text="{Binding Name}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
但是我无法将文本块设置为居中(垂直和水平)。
以上是关于将ListBlock置于ListBox.ItemTemplate中的主要内容,如果未能解决你的问题,请参考以下文章