当前位置:   article > 正文

wpf 按钮禁用样式

wpf 按钮禁用样式

WPF中,要为按钮创建一个禁用样式,需要在资源字典中定义一个Style,该样式将应用于Button控件的IsEnabled属性为False时的状态。

以下是一个简单的例子:

<Style TargetType="Button" x:Key="NormalButtonStyle">
    <Setter Property="Foreground" Value="White"/>
    <Setter Property="Width" Value="50"/>
    <Setter Property="Height" Value="30"/>
    <Setter Property="Background" Value="#FF0ABEFF"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="Button">
                <Border Background="{TemplateBinding Background}" CornerRadius="4">
                    <Border Background="Transparent" Name="back" CornerRadius="4">
                        <ContentPresenter VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
                                      HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"/>
                    </Border>
                </Border>
                <ControlTemplate.Triggers>
                    <Trigger Property="IsMouseOver" Value="True">
                        <Setter Property="Background" Value="#11000000" TargetName="back"/>
                    </Trigger>
                </ControlTemplate.Triggers>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
    <Style.Triggers>
        <Trigger Property="Button.IsEnabled" Value="False">
            <Setter Property="Background" Value="Gray"/>
        </Trigger>
    </Style.Triggers>

</Style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/523795
推荐阅读
相关标签
  

闽ICP备14008679号