123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <Window
- x:Class="IViewModel.SplashScreen"
- xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:suki="https://github.com/kikipoulet/SukiUI"
- Title="SplashScreen"
- Width="220"
- Height="260"
- d:DesignHeight="260"
- d:DesignWidth="220"
- Background="White"
- BorderBrush="Transparent"
- BorderThickness="0"
- CanResize="False"
- CornerRadius="0"
- ExtendClientAreaChromeHints="NoChrome"
- ExtendClientAreaTitleBarHeightHint="-1"
- ExtendClientAreaToDecorationsHint="True"
- IsHitTestVisible="False"
- ShowInTaskbar="False"
- SystemDecorations="None"
- Topmost="True"
- WindowStartupLocation="CenterScreen"
- mc:Ignorable="d">
- <StackPanel
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Orientation="Vertical">
- <suki:Loading
- Width="220"
- Height="220"
- LoadingStyle="Glow" />
- <TextBlock
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="22"
- FontWeight="Bold"
- Text="启动中" />
- </StackPanel>
- </Window>
|