22 lines
1 KiB
XML
22 lines
1 KiB
XML
<Page x:Class="WeeXnes.Views.Home.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:local="clr-namespace:WeeXnes.Views.Home"
|
|
mc:Ignorable="d"
|
|
Title="HomeView" Height="Auto" Width="Auto">
|
|
<Grid>
|
|
<StackPanel Orientation="Vertical" VerticalAlignment="Center">
|
|
<Image RenderOptions.BitmapScalingMode="HighQuality"
|
|
Source="/Images/wicon.png" Grid.Row="0"
|
|
HorizontalAlignment="Center" Width="200"/>
|
|
<TextBlock Text="WeeXnes Hub"
|
|
Foreground="White"
|
|
FontSize="28"
|
|
HorizontalAlignment="Center"
|
|
Name="VersionInfo"
|
|
Loaded="VersionInfo_OnLoaded"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Page>
|