I want to change the color of combobox in winRT (Windows Store app).
It looks like this. And I would like to replace the purple color.

I tried:
<ComboBox>
<ComboBox.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}">Red</SolidColorBrush>
</ComboBox.Resources>
<ComboBoxItem>One</ComboBoxItem>
<ComboBoxItem>Two</ComboBoxItem>
</ComboBox>
This does not work because x: Static no longer exists in the Windows storage application, and if I use StaticResource, the resource "System.HighlightBrushKey" does not exist.
thank
source
share