1
所以,我有這個ListBox
寫在XAML:我們可以更改ListBox的選定項目顏色嗎?
<ListBox Margin="0" x:Name="ListBox_Main" Grid.Row="1" VerticalAlignment="Top" FontSize="24" SelectionChanged="ListBox_Main_SelectionChanged" Foreground="Black">
<ListBoxItem Content="Item 1" Background="#19000000" />
<ListBoxItem Content="Item 2" Background="#19000000" />
<ListBoxItem Content="Item 3" Background="#19000000" />
<ListBoxItem Content="Item 4" Background="#19000000"/>
<ListBoxItem Content="Item 5" Background="#19000000"/>
</ListBox>
我可以改變的背景,前景顏色,列表框中的項目的文本,但沒有選項來改變顏色,當任何項目被選中時,它默認爲藍色:
我們可以改變那個藍色嗎?
這有你需要的所有信息:http://stackoverflow.com/questions/5519845/change-the-selected-color-listbox – LightStriker