You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
2.2 KiB
45 lines
2.2 KiB
1 year ago
|
<ResourceDictionary
|
||
|
xmlns="https://github.com/avaloniaui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:controls="clr-namespace:StabilityMatrix.Avalonia.Controls"
|
||
|
xmlns:ui="using:FluentAvalonia.UI.Controls">
|
||
|
|
||
|
<!-- ReSharper disable once Xaml.StaticResourceNotResolved -->
|
||
|
<ControlTheme
|
||
|
x:Key="{x:Type controls:HyperlinkIconButton}"
|
||
|
BasedOn="{StaticResource {x:Type ui:HyperlinkButton}}"
|
||
|
TargetType="controls:HyperlinkIconButton">
|
||
|
<Setter Property="ContentTemplate">
|
||
|
<DataTemplate DataType="x:String">
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<ui:SymbolIcon
|
||
|
Margin="0,1,4,0"
|
||
|
FontSize="15"
|
||
|
Foreground="{DynamicResource HyperlinkButtonForeground}"
|
||
|
Symbol="Link" />
|
||
1 year ago
|
<TextBlock
|
||
|
Foreground="{DynamicResource HyperlinkButtonForeground}" Text="{Binding}" />
|
||
1 year ago
|
</StackPanel>
|
||
|
</DataTemplate>
|
||
|
</Setter>
|
||
|
<!-- Override template to not set Underline TextDecoration -->
|
||
|
<Setter Property="Template">
|
||
|
<ControlTemplate>
|
||
|
<ContentPresenter Name="ContentPresenter"
|
||
|
Background="{TemplateBinding Background}"
|
||
|
BorderBrush="{TemplateBinding BorderBrush}"
|
||
|
BorderThickness="{TemplateBinding BorderThickness}"
|
||
|
Content="{TemplateBinding Content}"
|
||
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
||
|
Padding="{TemplateBinding Padding}"
|
||
|
CornerRadius="{TemplateBinding CornerRadius}"
|
||
|
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
|
||
|
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"
|
||
|
Foreground="{TemplateBinding Foreground}">
|
||
|
</ContentPresenter>
|
||
|
</ControlTemplate>
|
||
|
</Setter>
|
||
|
</ControlTheme>
|
||
|
|
||
|
</ResourceDictionary>
|