简体   繁体   English

Mahapps Metro Button Focus BorderBrush

[英]Mahapps Metro Button Focus BorderBrush

I am looking for something to set the BorderBrush Color of a Button inside my Mahapps Metro Window when i tabbing with my Keyboard, but I cannot find something.我正在寻找一些东西来在我的Mahapps Metro 窗口内设置按钮的BorderBrush颜色,但我找不到东西。 Is there a way to set a new color for the border?有没有办法为边框设置新颜色?

You can create a style that overrides the default template, you can replace the colors with whatever you like and add more triggers if desired:您可以创建一个覆盖默认模板的样式,您可以用您喜欢的任何颜色替换颜色,并根据需要添加更多触发器:

<Style TargetType="Button" x:Key="DefaultButtonStyle">
    <Setter Property="BorderBrush" Value="Transparent"/>
    <Setter Property="Background" Value="#3a3a3a"/>
    <Setter Property="Cursor" Value="Hand"/>
    <Setter Property="metro:ButtonHelper.PreserveTextCase" Value="True"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type Button}">
                <Border Background="{TemplateBinding Background}" 
                        BorderBrush="{TemplateBinding BorderBrush}" 
                        BorderThickness="{TemplateBinding BorderThickness}"
                        Padding="{TemplateBinding Padding}"
                        Margin="{TemplateBinding Margin}">
                    <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
                                      VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
    <Style.Triggers>
        <Trigger Property="IsMouseOver" Value="True">
            <Setter Property="Background" Value="#424242"/>
        </Trigger>
    </Style.Triggers>
</Style>

Alright, so i made it with Aleksandr Albert answer.好的,所以我和 Aleksandr Albert 一起回答了。 All i missed was the property IsFocused我错过的只是IsFocused属性

<Style x:Key="ButtonMentorPlusStyle" TargetType="{x:Type Button}" BasedOn="{StaticResource AccentedSquareButtonStyle}">
    <Setter Property="Foreground" Value="White" />
    <Setter Property="Background" Value="#0D6373" />
    <Setter Property="FontSize" Value="14" />
    <Setter Property="FontFamily" Value="Arial" />
    <Setter Property="FontStyle" Value="Normal" />
    <Setter Property="MinWidth" Value="100" />
    <Setter Property="MinHeight" Value="28" />
    <Setter Property="Controls:ButtonHelper.PreserveTextCase" Value="True" />
    <Setter Property="Padding" Value="10, 0, 10, 0" />
    <Setter Property="VerticalContentAlignment" Value="Center" />

    <Style.Triggers>
        <Trigger Property="IsFocused" Value="True">
            <Setter Property="BorderBrush" Value="White" />
        </Trigger>
    </Style.Triggers>

</Style>

Thank you guys谢谢你们

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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