DropDownClosed事件在工具栏中无法识别

时间:2015-12-06 01:48:00

标签: wpf xaml combobox

我在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有问题或者工具栏中无法识别组合框事件吗?

1 个答案:

答案 0 :(得分:0)

DropDownClosed 是一个事件,但在您的xaml中,您将其作为属性处理。使用 IsDropDownOpen 并最初将其设置为false。