28 lines
1.3 KiB
XML
28 lines
1.3 KiB
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">
|
|
<Viewbox Stretch="UniformToFill">
|
|
<Canvas Width="1086" Height="1448">
|
|
<Image Source="/Assets/SplashScreen.png" Width="1086" Height="1448"/>
|
|
<Border Canvas.Left="326" Canvas.Top="1004" Width="480" Height="31"
|
|
Background="#303234" CornerRadius="16" ClipToBounds="True">
|
|
<ProgressBar x:Name="StartupProgress" Minimum="0" Maximum="100" Value="0"
|
|
Height="31" Background="#303234" Foreground="#229DDD"
|
|
ShowProgressText="False"/>
|
|
</Border>
|
|
<Border Canvas.Left="295" Canvas.Top="1042" Width="520" Height="58"
|
|
Background="#202326" CornerRadius="12">
|
|
<TextBlock x:Name="StartupStatus" Text="Start wird vorbereitet …"
|
|
Foreground="White" FontSize="24" TextAlignment="Center"
|
|
VerticalAlignment="Center"/>
|
|
</Border>
|
|
</Canvas>
|
|
</Viewbox>
|
|
</Window>
|