简体   繁体   中英

Hover effect in style doesn't work (ToolBarPanel) - WPF c#

I have a toolbarpanel which I've made a custom style.

<Window.Resources>
    <Style x:Key="toolbar_opciones" TargetType="{x:Type ToolBarPanel}">
        <Setter Property="Background" Value="DeepSkyBlue"/> <!-- does not work -->
        <Setter Property="Cursor" Value="Hand"/>
        <Style.Triggers>
            <Trigger Property="IsMouseOver"  Value="True">
                <Setter Property="Background" Value="CadetBlue"/>
            </Trigger> <!-- does not work -->
        </Style.Triggers>
    </Style>
</Window.Resources>
<ToolBarPanel Style="{StaticResource toolbar_opciones}"/>

The cursor works but the background property no, why?

I tested your code, and here is the fix

<ToolBarPanel Style="{StaticResource toolbar_opciones}"/>

look at it closely, you were missing the double quotation which close the Style attribute. When I added it to the XAML , the Background has been applied.

Cheers.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM