简体   繁体   English

组合框模板问题wpf

[英]combobox template problems wpf

I've created template for combobox but it has strange view, data is not displaying: 我已经为组合框创建了模板,但它有奇怪的视图,数据没有显示:

在此输入图像描述

Here is XAML code: 这是XAML代码:

 <Style TargetType="{x:Type ComboBox}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type ComboBox}">
                <Border Background="{TemplateBinding Background}" x:Name="Bd" BorderBrush="Gray" BorderThickness="2" CornerRadius="2">
                </Border>
                <ControlTemplate.Triggers>
                    <Trigger Property="IsEnabled" Value="False">
                        <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" TargetName="Bd"/>
                        <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
                    </Trigger>
                    <Trigger Property="IsFocused" Value="true">
                        <Setter Property="BorderBrush" Value="Blue" TargetName="Bd"/>
                        <Setter Property="BorderThickness" Value="2"/>
                    </Trigger>
                    <Trigger Property="IsFocused" Value="false">
                        <Setter Property="BorderBrush" Value="Gray" TargetName="Bd"/>
                        <Setter Property="BorderThickness" Value="2"/>
                    </Trigger>
                </ControlTemplate.Triggers>
            </ControlTemplate>
        </Setter.Value>

    </Setter>
</Style>

What i missed here? 我错过了什么?

Your template creates near to nothing which makes the default one work, ie there is no items popup, and there is no ContentPresenter for the selected item either. 您的模板创建几乎没有任何东西,使默认的工作,即没有项目弹出,并且所选项目也没有ContentPresenter Have a look at the default template and you will see exactly what you are missing ( Here is a question explaining where to get them). 看看默认模板,你会看到你究竟缺少的东西( 是一个解释在哪里得到它们的问题)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM