113 lines
6.9 KiB
Plaintext
113 lines
6.9 KiB
Plaintext
|
|
<!--
|
||
|
|
This Source Code Form is subject to the terms of the MIT License.
|
||
|
|
If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT.
|
||
|
|
Copyright (C) Leszek Pomianowski and WPF UI Contributors.
|
||
|
|
All Rights Reserved.
|
||
|
|
|
||
|
|
Based on Microsoft XAML for Win UI
|
||
|
|
Copyright (c) Microsoft Corporation. All Rights Reserved.
|
||
|
|
-->
|
||
|
|
|
||
|
|
<ResourceDictionary
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:controls="clr-namespace:WPFluent.Controls">
|
||
|
|
|
||
|
|
<Thickness x:Key="HyperlinkButtonPadding">11,5,11,6</Thickness>
|
||
|
|
<Thickness x:Key="HyperlinkButtonBorderThemeThickness">0</Thickness>
|
||
|
|
<Thickness x:Key="HyperlinkButtonIconMargin">0,0,8,0</Thickness>
|
||
|
|
|
||
|
|
<Style x:Key="DefaultUiHyperlinkButtonStyle" TargetType="{x:Type controls:HyperlinkButton}">
|
||
|
|
<!-- Universal WPF UI focus -->
|
||
|
|
<Setter Property="FocusVisualStyle" Value="{DynamicResource DefaultControlFocusVisualStyle}" />
|
||
|
|
<!-- Universal WPF UI focus -->
|
||
|
|
<Setter Property="Background" Value="{DynamicResource HyperlinkButtonBackground}" />
|
||
|
|
<Setter Property="Foreground" Value="{DynamicResource HyperlinkButtonForeground}" />
|
||
|
|
<Setter Property="BorderThickness" Value="{StaticResource HyperlinkButtonBorderThemeThickness}" />
|
||
|
|
<Setter Property="BorderBrush" Value="Transparent" />
|
||
|
|
<Setter Property="Padding" Value="{StaticResource HyperlinkButtonPadding}" />
|
||
|
|
<Setter Property="HorizontalAlignment" Value="Left" />
|
||
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
||
|
|
<Setter Property="HorizontalContentAlignment" Value="Center" />
|
||
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
||
|
|
<Setter Property="FontSize" Value="{DynamicResource ControlContentThemeFontSize}" />
|
||
|
|
<Setter Property="FontWeight" Value="Normal" />
|
||
|
|
<Setter Property="CornerRadius" Value="{DynamicResource ControlCornerRadius}" />
|
||
|
|
<Setter Property="Appearance" Value="Secondary" />
|
||
|
|
<Setter Property="SnapsToDevicePixels" Value="True" />
|
||
|
|
<Setter Property="OverridesDefaultStyle" Value="True" />
|
||
|
|
<Setter Property="Template">
|
||
|
|
<Setter.Value>
|
||
|
|
<ControlTemplate TargetType="{x:Type controls:HyperlinkButton}">
|
||
|
|
<Border
|
||
|
|
x:Name="ContentBorder"
|
||
|
|
Width="{TemplateBinding Width}"
|
||
|
|
Height="{TemplateBinding Height}"
|
||
|
|
MinWidth="{TemplateBinding MinWidth}"
|
||
|
|
MinHeight="{TemplateBinding MinHeight}"
|
||
|
|
Padding="{TemplateBinding Padding}"
|
||
|
|
HorizontalAlignment="{TemplateBinding HorizontalAlignment}"
|
||
|
|
VerticalAlignment="{TemplateBinding VerticalAlignment}"
|
||
|
|
Background="{TemplateBinding Background}"
|
||
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
||
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
||
|
|
CornerRadius="{TemplateBinding CornerRadius}">
|
||
|
|
<Grid HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}">
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
<ColumnDefinition Width="*" />
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
|
||
|
|
<ContentControl
|
||
|
|
x:Name="ControlIcon"
|
||
|
|
Grid.Column="0"
|
||
|
|
Margin="{StaticResource HyperlinkButtonIconMargin}"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
Content="{TemplateBinding Icon}"
|
||
|
|
Focusable="False"
|
||
|
|
Foreground="{TemplateBinding Foreground}" />
|
||
|
|
|
||
|
|
<ContentPresenter
|
||
|
|
x:Name="ContentPresenter"
|
||
|
|
Grid.Column="1"
|
||
|
|
Content="{TemplateBinding Content}"
|
||
|
|
TextElement.Foreground="{TemplateBinding Foreground}" />
|
||
|
|
</Grid>
|
||
|
|
</Border>
|
||
|
|
<ControlTemplate.Triggers>
|
||
|
|
<MultiTrigger>
|
||
|
|
<MultiTrigger.Conditions>
|
||
|
|
<Condition Property="IsMouseOver" Value="True" />
|
||
|
|
<Condition Property="IsPressed" Value="False" />
|
||
|
|
</MultiTrigger.Conditions>
|
||
|
|
<Setter TargetName="ContentBorder" Property="Background" Value="{DynamicResource HyperlinkButtonBackgroundPointerOver}" />
|
||
|
|
<Setter TargetName="ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource HyperlinkButtonForegroundPointerOver}" />
|
||
|
|
</MultiTrigger>
|
||
|
|
<MultiTrigger>
|
||
|
|
<MultiTrigger.Conditions>
|
||
|
|
<Condition Property="IsMouseOver" Value="True" />
|
||
|
|
<Condition Property="IsPressed" Value="True" />
|
||
|
|
</MultiTrigger.Conditions>
|
||
|
|
<Setter Property="Background" Value="{DynamicResource HyperlinkButtonBackgroundPressed}" />
|
||
|
|
<Setter TargetName="ControlIcon" Property="Foreground" Value="{DynamicResource HyperlinkButtonForegroundPressed}" />
|
||
|
|
<Setter TargetName="ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource HyperlinkButtonForegroundPressed}" />
|
||
|
|
</MultiTrigger>
|
||
|
|
<Trigger Property="Icon" Value="{x:Null}">
|
||
|
|
<Setter TargetName="ControlIcon" Property="Margin" Value="0" />
|
||
|
|
<Setter TargetName="ControlIcon" Property="Visibility" Value="Collapsed" />
|
||
|
|
</Trigger>
|
||
|
|
<Trigger Property="IsEnabled" Value="False">
|
||
|
|
<Setter Property="Background" Value="{DynamicResource HyperlinkButtonBackgroundDisabled}" />
|
||
|
|
<Setter TargetName="ControlIcon" Property="Foreground" Value="{DynamicResource HyperlinkButtonForegroundDisabled}" />
|
||
|
|
<Setter TargetName="ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource HyperlinkButtonForegroundDisabled}" />
|
||
|
|
</Trigger>
|
||
|
|
</ControlTemplate.Triggers>
|
||
|
|
</ControlTemplate>
|
||
|
|
</Setter.Value>
|
||
|
|
</Setter>
|
||
|
|
</Style>
|
||
|
|
|
||
|
|
<Style BasedOn="{StaticResource DefaultUiHyperlinkButtonStyle}" TargetType="{x:Type controls:HyperlinkButton}" />
|
||
|
|
|
||
|
|
</ResourceDictionary>
|