Files
LanMountainDesktop/LanMountainDesktop.Launcher/Views/SplashWindow.axaml

41 lines
1.3 KiB
Plaintext
Raw Normal View History

2026-04-16 01:59:21 +08:00
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="LanMountainDesktop.Launcher.Views.SplashWindow"
Title="阑山桌面"
Width="420"
2026-04-16 14:17:46 +08:00
Height="240"
2026-04-16 01:59:21 +08:00
CanResize="False"
WindowStartupLocation="CenterScreen"
SystemDecorations="None">
2026-04-16 14:17:46 +08:00
<Grid Margin="24" RowDefinitions="*,Auto,Auto,Auto">
2026-04-16 01:59:21 +08:00
<TextBlock x:Name="AppNameText"
Text="阑山桌面"
FontSize="34"
VerticalAlignment="Center"
2026-04-16 14:17:46 +08:00
HorizontalAlignment="Center"
Grid.Row="0" />
<ProgressBar x:Name="ProgressIndicator"
Grid.Row="1"
Minimum="0"
Maximum="100"
Value="0"
Height="4"
Margin="0,12,0,0"
IsIndeterminate="True" />
<TextBlock x:Name="StageText"
Grid.Row="2"
FontSize="12"
Foreground="#999999"
HorizontalAlignment="Center"
Margin="0,8,0,0"
Text="" />
<TextBlock x:Name="DetailText"
Grid.Row="3"
FontSize="11"
Foreground="#BBBBBB"
HorizontalAlignment="Center"
Margin="0,2,0,0"
Text="" />
2026-04-16 01:59:21 +08:00
</Grid>
</Window>