2

我正在尝试将背景设置为透明,但是正如您在下面的屏幕截图中看到的那样,当鼠标悬停在ListBoxItem它上面时,它会在项目上显示一个蓝色矩形:

ListViewItem 屏幕截图

我正在使用 MVVM,我的实现如下:

<UserControl.Resources>
    <Style x:Key="HyperLinkStyle" TargetType="{x:Type Hyperlink}">
        <Setter Property="Foreground" Value="#FF0066CC"/>
        <Setter Property="TextDecorations" Value="None" />
        <Style.Triggers>
            <Trigger Property="IsMouseOver" Value="True">
                <Setter Property="Foreground" Value="#FF0066CC"/>
                <Setter Property="TextDecorations" Value="Underline" />
            </Trigger>
            <Trigger Property="IsEnabled" Value="False">
                <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
            </Trigger>
            <Trigger Property="IsEnabled" Value="True">
                <Setter Property="Cursor" Value="Hand"/>
            </Trigger>
        </Style.Triggers>
    </Style>
</UserControl.Resources>

<Grid>
    <Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Margin="0, 10, 0, 0">
        <ListBox x:Name="TeamListView" ItemsSource="{Binding Teams}" BorderThickness="0" 
                 SelectionMode="Single" Background="Transparent">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <DataTemplate.Resources>
                        <Style TargetType="ListBoxItem">
                            <Setter Property="Background" Value="Transparent"/>
                            <Style.Triggers>
                                <Trigger Property="IsMouseOver" Value="True">
                                    <Setter Property="Background" Value="Transparent"/>
                                </Trigger>
                            </Style.Triggers>
                        </Style>
                    </DataTemplate.Resources>
                    <TextBlock Margin="0, 0, 0, 5">
                            <Hyperlink Style="{Binding Source={StaticResource HyperLinkStyle}}" 
                                       Command="{Binding ElementName=TeamListView, Path=DataContext.ConnectToTeam}" 
                                       CommandParameter="{Binding}">
                                <TextBlock Text="{Binding Path=DisplayName}" />
                            </Hyperlink>
                    </TextBlock>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </Grid>
</Grid>

笔记:

  1. hyperlinkstyle 用于在列表框中为超链接控件提供超链接感觉。

  2. 列表框“TeamListView”使用 ItemTemplate DataTemplate。ItemTemplate 的样式是 ListBoxItem,通过将背景设置为透明 onMouseHover 目的是在悬停时移除没有颜色的蓝色。

我错过了什么?

4

2 回答 2

1

如果您只想删除您的突出显示,您ListBoxItem可以设置系统颜色,如下所示:

<Style TargetType="ListBoxItem">
     <Style.Resources>  
         <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" color="Transparent" />
         <SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent" />
    </Style.Resources>
于 2013-09-22T15:39:56.687 回答
1

尝试添加ListBox.Resources并删除IsMouseOver触发器:

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

根据您的系统主题,系统中具有默认的高亮画笔。要更改此值,必须转到SystemColors

引用自MSDN

SystemColors 类提供对系统画笔和颜色的访问,例如 ControlBrush、ControlBrushKey 和 DesktopBrush。系统画笔是使用指定系统颜色绘制区域的 SolidColorBrush 对象。系统刷始终会产生实心填充;它不能用于创建渐变。

您可以将系统画笔用作静态或动态资源。如果您希望在用户在应用程序运行时更改系统画笔时自动更新画笔,请使用动态资源;否则,请使用静态资源。

.NET 4.5系统中不使用SystemColors,因此,您应该:

于 2013-09-22T15:44:47.013 回答