29 lines
1.4 KiB
XML
29 lines
1.4 KiB
XML
<UserControl x:Class="CompactNavigationMenu.Views.HomeView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
|
|
xmlns:vm="clr-namespace:CompactNavigationMenu.ViewModels"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<UserControl.DataContext>
|
|
<vm:HomeViewModel/>
|
|
</UserControl.DataContext>
|
|
|
|
<Grid>
|
|
<StackPanel Orientation="Vertical"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
<iconPacks:PackIconMaterialDesign HorizontalAlignment="Center"
|
|
Foreground="{StaticResource PrimaryDarkBrush}"
|
|
Width="100" Height="100"
|
|
Kind="Home"/>
|
|
<TextBlock FontSize="40" FontWeight="Bold"
|
|
VerticalAlignment="Center" HorizontalAlignment="Center"
|
|
Foreground="{StaticResource PrimaryDarkBrush}"
|
|
Text="{Binding Title}"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|