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>