wabbajack/Wabbajack/Views/LinksView.xaml

64 lines
2.0 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="*" />
2019-12-20 20:51:10 +00:00
<ColumnDefinition Width="*" />
2019-11-24 08:12:28 +00:00
</Grid.ColumnDefinitions>
<Button
2019-11-24 08:12:28 +00:00
Grid.Column="0"
Width="35"
Height="35"
2019-12-20 20:51:10 +00:00
Click="ConfigureLogins_Click"
Style="{StaticResource IconBareButtonStyle}">
<icon:PackIconMaterial
Width="25"
Height="25"
Kind="Cogs" />
</Button>
<Button
Grid.Column="1"
Width="35"
Height="35"
Click="GitHub_Click"
Style="{StaticResource IconBareButtonStyle}">
<icon:PackIconMaterial
Width="25"
Height="25"
Kind="GithubCircle" />
</Button>
<Button
2019-12-20 20:51:10 +00:00
Grid.Column="2"
Width="35"
Height="35"
Margin="4,0,0,0"
Click="Patreon_Click"
Style="{StaticResource IconBareButtonStyle}">
<icon:PackIconMaterial
Width="25"
Height="25"
Kind="Patreon" />
</Button>
<Button
2019-12-20 20:51:10 +00:00
Grid.Column="3"
Width="35"
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>