我有这个简单的组合框:
<StackPanel>
<ComboBox Width="200" Background="Transparent"
Foreground="White" BorderBrush="Transparent"
UseLayoutRounding="True" SelectedIndex="0">
<x:String>item 1</x:String>
<x:String>item 2</x:String>
<x:String>item 3</x:String>
</ComboBox>
</StackPanel>
我想改变下拉箭头的颜色,有什么办法可以改变吗?或者如果可能的话,至少删除/隐藏它。