15 lines
548 B
XML
15 lines
548 B
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="LehrerApp.Desktop.Views.SplashWindow"
|
|
Title="LehrerPlaner Organizer wird geladen"
|
|
Width="450" Height="600"
|
|
CanResize="False"
|
|
ShowInTaskbar="False"
|
|
WindowDecorations="None"
|
|
WindowStartupLocation="CenterScreen">
|
|
<Image Source="/Assets/SplashScreen.png"
|
|
Stretch="UniformToFill"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch"/>
|
|
</Window>
|