删除WPF ListView / GridView高亮显示chrome

时间:2009-08-09 19:37:17

标签: wpf listview wpf-controls highlight

我有带GridView视图的WPF ListView,我想删除行突出显示的任何痕迹。

这段有用的代码可以在本网站的一个答案中找到:

     <ListView.ItemContainerStyle>
        <Style TargetType="{x:Type ListViewItem}">
           <Setter Property="Control.Focusable" Value="False"/>
           <Style.Triggers>
              <Trigger Property="IsMouseOver" Value="True">
                 <Setter Property="Background" Value="{x:Null}" />
                 <Setter Property="BorderBrush" Value="{x:Null}" />
              </Trigger>
           </Style.Triggers>
        </Style>
     </ListView.ItemContainerStyle>

但是,虽然此更改有助于删除大部分突出显示,但它不会删除鼠标在ListView行上移动时仍出现的水平栏。如何删除它?

我已经处理了涉及Button的类似问题,并找到了一个解决方案,通过删除其chrome来更改Button模板。

在ListView / GridView的这种情况下,我无法找到要更改的相应chrome和模板。

3 个答案:

答案 0 :(得分:14)

如果您安装了Windows SDK,则可以在以下位置找到所有默认样式的XAML源(假设您已安装样本):

  

%PROGRAMFILES%\微软   的SDK \的Windows \ V6.1 \样品\ WPFSamples.zip

该zip文件包含一个文件夹Core,其中包含AeroTheme,LunaTheme等,其中包含默认样式的来源。不幸的是,这些文件相当大(Aero约为8500行),结构不合理或格式化(IMO)。

ListViewItem的默认控件模板如下所示:

<ControlTemplate TargetType="{x:Type ListViewItem}">
  <Border CornerRadius="2" SnapsToDevicePixels="True"
          BorderThickness="{TemplateBinding BorderThickness}" 
          BorderBrush="{TemplateBinding BorderBrush}" 
          Background="{TemplateBinding Background}">
    <Border Name="InnerBorder" CornerRadius="1" BorderThickness="1">
      <Grid>
        <Grid.RowDefinitions>
          <RowDefinition MaxHeight="11" />
          <RowDefinition />
        </Grid.RowDefinitions>

        <Rectangle Name="UpperHighlight" Visibility="Collapsed" Fill="#75FFFFFF" />
        <GridViewRowPresenter Grid.RowSpan="2" 
                              VerticalAlignment="{TemplateBinding VerticalContentAlignment}" 
                              SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
      </Grid>
    </Border>
  </Border>

  <ControlTemplate.Triggers>
    <Trigger Property="IsMouseOver" Value="True">
      <Setter Property="Background" Value="{StaticResource ListItemHoverFill}" />
      <Setter Property="BorderBrush" Value="#FFCCF0FF" />
      <Setter TargetName="UpperHighlight" Property="Visibility" Value="Visible" />
    </Trigger>

    <Trigger Property="IsSelected" Value="True">
      <Setter Property="Background" Value="{StaticResource ListItemSelectedFill}" />
      <Setter Property="BorderBrush" Value="#FF98DDFB" />
      <Setter TargetName="InnerBorder" Property="BorderBrush" Value="#80FFFFFF" />
      <Setter TargetName="UpperHighlight" Property="Visibility" Value="Visible" />
      <Setter TargetName="UpperHighlight" Property="Fill" Value="#40FFFFFF" />
    </Trigger>

    <MultiTrigger>
      <MultiTrigger.Conditions>
        <Condition Property="IsSelected" Value="True" />
        <Condition Property="Selector.IsSelectionActive" Value="False" />
      </MultiTrigger.Conditions>

      <Setter Property="Background" Value="{StaticResource ListItemSelectedInactiveFill}" />
      <Setter Property="BorderBrush" Value="#FFCFCFCF" />
    </MultiTrigger>

    <MultiTrigger>
      <MultiTrigger.Conditions>
        <Condition Property="IsSelected" Value="True" />
        <Condition Property="IsMouseOver" Value="True" />
      </MultiTrigger.Conditions>

      <Setter Property="Background" Value="{StaticResource ListItemSelectedHoverFill}" />
      <Setter Property="BorderBrush" Value="#FF98DDFB" />
    </MultiTrigger>

    <Trigger Property="IsEnabled" Value="False">
      <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}" />
    </Trigger>
  </ControlTemplate.Triggers>
</ControlTemplate>

删除所有突出显示的最佳选择可能是将您自己的ControlTemplate替换为仅包含GridViewRowPresenter(可能在单个边框中)。不要忘记在禁用控件时包含灰色项目的触发器。

答案 1 :(得分:8)

我现在不在Windows PC前面对此进行测试,但我在列表框中遇到了类似的问题,我通过将以下内容放入我的Window.Resources来修复

<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent" />
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent" />

不确定它是否适用于您的列表视图。

答案 2 :(得分:0)

使用您的代码,我根本没有看到任何行。你现在的默认主题是什么? Luna,Aero等?可能是你的不同于我的,因此铬的差异。您的ListView上还有其他特定设置吗?

Style SnooperShow Me The Template可能会帮助您追踪负责您所看到的线条的视觉元素。您可能也会对ListView {{1}}感兴趣,以获得您想要的效果。