我试图让列表视图看起来 以某种方式, 我已经设法删除了大多数 UI 元素, 我不想, 但我不知道边界 周围选择的物品来自哪里。
It s index 0 that is selected in the example. How do I remove that border?
目前我是以下代号 来去除背景和边框刷
<ListView ItemsSource="{Binding Path=Items}" Name="MainListView">
<ListView.ItemContainerStyle>
<Style TargetType="ListViewItem">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="{x:Null}" />
<Setter Property="BorderBrush" Value="{x:Null}" />
<Setter Property="BorderThickness" Value="0" />
</Trigger>
当我在标签上鼠标时, 问题可能与此有关, 我得到第二个灰色的行, 如 :