我在VS2015中使用wpf。 My Window xaml包含以下代码段:
</ToolBarTray.Resources>
<Style
x:Key="{x:Static ToolBar.ComboBoxStyleKey}"
TargetType="ComboBox">
<Style.Triggers>
<Trigger
Property="DropDownClosed" Value="True">
<Setter Property="Background" Value="White" />
</Trigger>
</Style.Triggers>
</Style>
</ToolBarTray.Resources>
这给了我这个设计时错误:
The member "DropDownClosed" is not recognized or is not accessible.
我的xaml有问题或者工具栏中无法识别组合框事件吗?
答案 0 :(得分:0)
DropDownClosed 是一个事件,但在您的xaml中,您将其作为属性处理。使用 IsDropDownOpen 并最初将其设置为false。