如何在 Windows 8 中使用 C# 将列表框的项目居中对齐?
这是我的xml:
<ListBox x:Name="listBox1" HorizontalAlignment="Left" Height="365" Margin="242,275,-1,0" VerticalAlignment="Top" Width="190" SelectionChanged="listBox1_SelectionChanged" FontSize="20" FontWeight="Bold"/>
在后面的代码中,我使用以下代码填充列表框:
listBox1.Items.Add(new ListBoxItem() { Content = Global.availableDecks[0].ToString(), IsEnabled = true });
listBox1.Items.Add(new ListBoxItem() { Content = Global.availableDecks[1].ToString(), IsEnabled = true });