2019-11-24 08:12:28 +00:00
<UserControl
x:Class="Wabbajack.LinksView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
2019-12-14 04:40:56 +00:00
xmlns:icon="http://metro.mahapps.com/winfx/xaml/iconpacks"
2019-11-24 08:12:28 +00:00
xmlns:local="clr-namespace:Wabbajack"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
2020-08-17 04:15:19 +00:00
<ColumnDefinition Width="*" />
2019-11-24 08:12:28 +00:00
</Grid.ColumnDefinitions>
2020-08-17 04:15:19 +00:00
<TextBlock
Text="Wabbajack is free, but supported by users like you. Please consider supporting us on Patreon to help offset the costs of distributing these modlists."
TextWrapping="Wrap"
FontWeight="Bold"
FontSize="14"
MouseDown="Patreon_Click"
Foreground="Cyan"
/>
<Button Grid.Column="1"
Width="40"
Height="35"
Margin="4,0,0,0"
Click="Patreon_Click"
Style="{StaticResource IconBareButtonStyle}">
2019-12-14 04:40:56 +00:00
<icon:PackIconMaterial
Width="25"
Height="25"
2020-08-17 04:15:19 +00:00
Kind="Patreon"
Foreground="Cyan"/>
2019-12-14 04:40:56 +00:00
</Button>
2020-08-17 04:15:19 +00:00
<Button Grid.Column="2"
Width="40"
Height="35"
Click="GitHub_Click"
Style="{StaticResource IconBareButtonStyle}">
2019-12-14 04:40:56 +00:00
<icon:PackIconMaterial
Width="25"
Height="25"
2020-08-17 04:15:19 +00:00
Kind="GitHub" />
2019-12-14 04:40:56 +00:00
</Button>
2020-08-17 04:15:19 +00:00
<Button Grid.Column="3"
Width="40"
Height="35"
Click="Discord_Click"
Style="{StaticResource IconBareButtonStyle}">
2019-12-14 04:40:56 +00:00
<icon:PackIconMaterial
Width="25"
Height="25"
Kind="Discord" />
</Button>
2019-11-24 08:12:28 +00:00
</Grid>
</UserControl>