我是靠谱客的博主 柔弱舞蹈,最近开发中收集的这篇文章主要介绍Button中使用模板后,Trigger中使用MouseOver时候,鼠标滑动时候不能触发响应,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

项目中遇到在重写Window类,自定义一个最大,最小和关闭按钮。此时出现一个问题,绘制最小按钮的横线的时候,MouseOver有触发修改背景颜色,但是实际鼠标划过去后,只有触到横线的时候才会触发那个Trigger。但是提前设置了背景后就不会。

解决方法:将Border的Background设置成“Transparent”.

<Style x:Key="ButtonMinStyle" TargetType="{x:Type Button}">
        <Setter Property="Control.Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type Button}">
                    <Border Name="bor1" BorderThickness="0"  CornerRadius="2"   SnapsToDevicePixels="True"   Height="22" Width="22" Background="Transparent">
                        <Path  Margin="4" Data="M5 10 L5,10 10 10" Fill="#FFF4F4F5" Stretch="Fill" Stroke="White"
                                StrokeThickness="2" HorizontalAlignment="Center" VerticalAlignment="Center"/>
                    </Border>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsMouseOver" Value="true" SourceName="bor1">
                            <Setter Property="Background" Value="Red" TargetName="bor1"/>
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

 

最后

以上就是柔弱舞蹈为你收集整理的Button中使用模板后,Trigger中使用MouseOver时候,鼠标滑动时候不能触发响应的全部内容,希望文章能够帮你解决Button中使用模板后,Trigger中使用MouseOver时候,鼠标滑动时候不能触发响应所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部