0

我有这个简单的组合框:

<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>

我想改变下拉箭头的颜色,有什么办法可以改变吗?或者如果可能的话,至少删除/隐藏它。

4

1 回答 1

2

发布作为将来参考的答案:

您可以通过打开在 Blend 中定义的 xaml 文件来编辑组合框样式,右键单击组合框,然后选择编辑模板 --> 编辑副本。从出现的屏幕中,您可以找到要更改的适当值

于 2012-10-12T21:24:58.320 回答