0

我有以下代码:

<Style x:Key="ComboBoxControlTemplate" TargetType="ComboBoxe">
    <Setter Property="FontSize" Value="25"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type ComboBox}">
                <Grid>
                    <TextBox 
                        x:Name="PART_EditableTextBox" 
                        Template="{StaticResource TextBoxBaseControlTemplate}" 
                        FontSize="25" 
                        FontFamily="{StaticResource CommonFont}" 
                        FontWeight="Light"
                        TextChanged="EmployeeField_TextChanged"
                        GotFocus="EmployeeField_OnGotFocus"
                        LostFocus="EmployeeField_OnLostFocus"/>
                    <ContentPresenter Name="ContentSite" IsHitTestVisible="False"
                        Content="{TemplateBinding SelectionBoxItem}"
                        ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}"
                        ContentTemplateSelector="{TemplateBinding ItemTemplateSelector}"
                        Margin="3,3,23,3"
                        VerticalAlignment="Center"
                        HorizontalAlignment="Left" />

                    <Popup 
                        Name="Popup"
                        Placement="Bottom"
                        IsOpen="{TemplateBinding IsDropDownOpen}"
                        AllowsTransparency="True" 
                        Focusable="False"
                        PopupAnimation="Slide">

                        <StackPanel Name="DropDown" SnapsToDevicePixels="True" IsItemsHost="True" Background="#FFEEEEEE" />
                    </Popup>
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

不过有一个小问题。StackPanel包含实际项目的显示ComboBox每个项目都带有填充或某种边缘。我有一个单独DataTemplateComboBox项目,其中包括每个项目下方的边框。但是由于有前面提到的填充或其他任何东西,所以边框不会一直延伸到Popup. 我需要一个延伸整个方式的边界。此外,我需要能够指定当用户将鼠标悬停在项目上时显示的颜色和边框。

4

0 回答 0