0
如何在Windows 8中使用C#對齊列表框的項目?Windows8列表框對齊文本中心
這是我的XAML:
<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 });