wabbajack/Wabbajack/Views/LinksView.xaml

52 lines
1.6 KiB
Plaintext
Raw Normal View History

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"
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="*" />
</Grid.ColumnDefinitions>
<Button
2019-11-24 08:12:28 +00:00
Grid.Column="0"
Width="40"
2019-12-20 20:51:10 +00:00
Height="35"
Click="GitHub_Click"
Style="{StaticResource IconBareButtonStyle}">
<icon:PackIconMaterial
Width="25"
Height="25"
2020-04-21 04:07:40 +00:00
Kind="GitHub" />
</Button>
<Button
Grid.Column="1"
Width="40"
Height="35"
Margin="4,0,0,0"
Click="Patreon_Click"
Style="{StaticResource IconBareButtonStyle}">
<icon:PackIconMaterial
Width="25"
Height="25"
Kind="Patreon" />
</Button>
<Button
Grid.Column="2"
Width="40"
Height="35"
Click="Discord_Click"
Style="{StaticResource IconBareButtonStyle}">
<icon:PackIconMaterial
Width="25"
Height="25"
Kind="Discord" />
</Button>
2019-11-24 08:12:28 +00:00
</Grid>
</UserControl>