2026-04-16 01:59:21 +08:00
|
|
|
<Window xmlns="https://github.com/avaloniaui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2026-04-16 19:28:58 +08:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:views="clr-namespace:LanMountainDesktop.Launcher.Views"
|
|
|
|
|
xmlns:ui="using:FluentAvalonia.UI.Controls"
|
|
|
|
|
mc:Ignorable="d"
|
2026-04-17 15:16:01 +08:00
|
|
|
d:DesignWidth="480"
|
|
|
|
|
d:DesignHeight="320"
|
2026-04-16 01:59:21 +08:00
|
|
|
x:Class="LanMountainDesktop.Launcher.Views.SplashWindow"
|
2026-04-16 19:28:58 +08:00
|
|
|
x:DataType="views:SplashWindow"
|
2026-04-17 15:16:01 +08:00
|
|
|
Title="LanMountain Desktop"
|
|
|
|
|
Width="480"
|
|
|
|
|
Height="320"
|
2026-04-16 01:59:21 +08:00
|
|
|
CanResize="False"
|
|
|
|
|
WindowStartupLocation="CenterScreen"
|
2026-04-16 19:28:58 +08:00
|
|
|
SystemDecorations="None"
|
|
|
|
|
Background="{DynamicResource SolidBackgroundFillColorBaseBrush}"
|
2026-04-17 15:16:01 +08:00
|
|
|
TransparencyLevelHint="None"
|
|
|
|
|
Icon="/Assets/logo.ico">
|
2026-04-16 19:28:58 +08:00
|
|
|
<Design.DataContext>
|
|
|
|
|
<views:SplashWindow />
|
|
|
|
|
</Design.DataContext>
|
|
|
|
|
|
2026-04-17 15:16:01 +08:00
|
|
|
<Grid>
|
|
|
|
|
<!-- 左上角:应用名称 -->
|
2026-04-16 01:59:21 +08:00
|
|
|
<TextBlock x:Name="AppNameText"
|
2026-04-17 15:16:01 +08:00
|
|
|
Text="LanMountain Desktop"
|
|
|
|
|
FontSize="24"
|
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
Margin="24,24,0,0"
|
2026-04-16 19:28:58 +08:00
|
|
|
Foreground="{DynamicResource TextFillColorPrimaryBrush}" />
|
|
|
|
|
|
2026-04-17 15:16:01 +08:00
|
|
|
<!-- 底部区域:进度条和状态 -->
|
|
|
|
|
<Grid VerticalAlignment="Bottom" Margin="24,0,24,24">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<!-- 第一行:左下角版本信息,右下角阶段文字 -->
|
|
|
|
|
<Grid Grid.Row="0" Margin="0,0,0,8">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<!-- 左下角:版本和开发代号 - 可点击打开开发者界面(隐藏功能) -->
|
|
|
|
|
<Border x:Name="VersionTextBorder"
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
Background="Transparent"
|
|
|
|
|
Cursor="Hand"
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
VerticalAlignment="Bottom">
|
|
|
|
|
<TextBlock x:Name="VersionText"
|
|
|
|
|
FontSize="11"
|
|
|
|
|
Foreground="{DynamicResource TextFillColorSecondaryBrush}"
|
|
|
|
|
Opacity="0.8"
|
|
|
|
|
Text="1.0.0 (Administrate)" />
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
<!-- 右下角:阶段文字 -->
|
|
|
|
|
<TextBlock x:Name="StatusText"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
FontSize="11"
|
|
|
|
|
Foreground="{DynamicResource TextFillColorSecondaryBrush}"
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
VerticalAlignment="Bottom"
|
|
|
|
|
Opacity="0.8"
|
|
|
|
|
Text="Initializing..." />
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- 底部:进度条 -->
|
|
|
|
|
<ProgressBar x:Name="ProgressIndicator"
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Minimum="0"
|
|
|
|
|
Maximum="100"
|
|
|
|
|
Value="0"
|
|
|
|
|
Height="4"
|
|
|
|
|
IsIndeterminate="False"
|
|
|
|
|
Foreground="{DynamicResource AccentFillColorDefaultBrush}"
|
|
|
|
|
Background="{DynamicResource ControlStrokeColorDefaultBrush}" />
|
|
|
|
|
</Grid>
|
2026-04-16 01:59:21 +08:00
|
|
|
</Grid>
|
|
|
|
|
</Window>
|