Files
community/Ink Canvas/Windows/SplashScreen.xaml
T
2025-10-01 18:17:39 +08:00

57 lines
2.2 KiB
XML

<Window x:Class="Ink_Canvas.Windows.SplashScreen"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Ink Canvas"
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"
WindowState="Maximized"
Topmost="True"
ShowInTaskbar="False"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen">
<Grid>
<!-- 背景遮罩 -->
<Rectangle Fill="#80000000" />
<!-- 启动图片容器 -->
<Grid HorizontalAlignment="Center" VerticalAlignment="Center">
<StackPanel>
<!-- 启动图片 -->
<Image x:Name="StartupImage"
Source="pack://application:,,,/Resources/ICC Start.png"
Width="600"
Height="450"
Stretch="Uniform" />
<!-- 版本号显示 - 右上角 -->
<TextBlock x:Name="VersionTextBlock"
FontSize="12"
Foreground="FloralWhite"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Margin="0,-385,50,0"
Opacity="0.8"
Panel.ZIndex="1000" />
<!-- 加载文本 -->
<TextBlock x:Name="LoadingText"
Text="正在启动 Ink Canvas..."
FontSize="18"
FontWeight="SemiBold"
Foreground="White"
HorizontalAlignment="Center"
Margin="0,-150,0,0" />
<!-- 进度条 -->
<ProgressBar x:Name="LoadingProgress"
Width="500"
Height="8"
Margin="0,-170,0,0"
Background="#40000000"
Foreground="#0078D4"
IsIndeterminate="True" />
</StackPanel>
</Grid>
</Grid>
</Window>