LANCommander/LANCommander.Launcher/Views/SplashView.axaml
2026-06-06 05:50:53 -05:00

35 lines
1.4 KiB
XML

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:LANCommander.Launcher.ViewModels"
xmlns:svg="using:Avalonia.Svg.Skia"
x:Class="LANCommander.Launcher.Views.SplashView"
x:DataType="vm:SplashViewModel">
<Grid>
<!-- Background image (set from code-behind) -->
<Image x:Name="BackgroundImage" Stretch="UniformToFill" />
<!-- Dark overlay for readability on any background -->
<Border Background="#AA000000" />
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Spacing="24">
<!-- Logo -->
<svg:Svg Path="/Assets/logo.svg"
Width="350"
HorizontalAlignment="Center" />
<!-- Loading indicator -->
<StackPanel HorizontalAlignment="Center" Spacing="12" IsVisible="{Binding IsLoading}">
<ProgressBar IsIndeterminate="True"
Width="200"
Height="4" />
<TextBlock Text="{Binding StatusMessage}"
Foreground="White"
Opacity="0.75"
FontSize="12"
HorizontalAlignment="Center" />
</StackPanel>
</StackPanel>
</Grid>
</UserControl>