我想隐藏ListBox的边框,并使所选项目的背景与未选择的项目相同。
我该怎么做?
答案 0 :(得分:52)
要隐藏边框,请使用
<ListBox BorderThickness="0"/>
如果您不想进行选择,请使用ItemsControl
代替ListBox
。
以下代码隐藏了ListBox周围的边框,并且始终在项目上显示白色背景(如果通过ItemsSource
- 属性生成)。
<ListBox BorderThickness="0" HorizontalContentAlignment="Stretch">
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="Padding" Value="0"/>
</Style>
</ListBox.ItemContainerStyle>
<ListBox.ItemTemplate>
<DataTemplate>
<Grid Background="White">
<ContentPresenter Content="{Binding}"/>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
如果使用ListViewItem实例,则必须更改其背景。
<强>更新强>
<ListBox BorderThickness="0" HorizontalContentAlignment="Stretch" >
<ListBox.Resources>
<Style TargetType="ListBoxItem">
<Style.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent"/>
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent"/>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="Black"/>
</Style.Resources>
</Style>
</ListBox.Resources>
</ListBox>
这也应该与ListBoxItem实例一起使用,并且IMO不那么“解决”。