在列表框WPF中的selecteditem周围设置边框

时间:2011-02-13 11:42:10

标签: .net wpf xaml listbox border

如何在列表框中设置样式以获取所选项目周围的边框?

2 个答案:

答案 0 :(得分:14)

最简单的方法是在IsSelected

的ItemContainerStyle中为ListBox添加触发器
<ListBox ...>
    <ListBox.ItemContainerStyle>
        <Style TargetType="ListBoxItem">
            <Setter Property="BorderBrush" Value="Red"/>
            <Style.Triggers>
                <Trigger Property="IsSelected" Value="True">
                    <Setter Property="BorderThickness" Value="1"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </ListBox.ItemContainerStyle>
    <!--...-->
</ListBox>

答案 1 :(得分:2)

FocusVisualStyle可能就是你要找的东西。