15 lines
767 B
Plaintext
15 lines
767 B
Plaintext
|
<Window xmlns="https://github.com/avaloniaui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:viewModels="clr-namespace:DispenserUI.ViewModels"
|
||
|
Width="1920"
|
||
|
Height="1080"
|
||
|
x:DataType="viewModels:SplashVM"
|
||
|
WindowState="FullScreen"
|
||
|
x:Class="DispenserUI.Views.Windows.SplashWindow">
|
||
|
<StackPanel VerticalAlignment="Center"
|
||
|
HorizontalAlignment="Center">
|
||
|
<Image Width="434" Height="318" Source="/Assets/UI/smallAI@2x.png" />
|
||
|
<TextBlock Text="{Binding ApplicationName}" FontSize="24" Margin="0,10,0,0" HorizontalAlignment="Center" />
|
||
|
<TextBlock Text="{Binding StartUpMessage}" FontSize="18" TextAlignment="Center" Margin="0,20,0,0" />
|
||
|
</StackPanel>
|
||
|
</Window>
|