SplashScreen.axaml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Window
  2. x:Class="IViewModel.SplashScreen"
  3. xmlns="https://github.com/avaloniaui"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. xmlns:suki="https://github.com/kikipoulet/SukiUI"
  8. Title="SplashScreen"
  9. Width="220"
  10. Height="260"
  11. d:DesignHeight="260"
  12. d:DesignWidth="220"
  13. Background="White"
  14. BorderBrush="Transparent"
  15. BorderThickness="0"
  16. CanResize="False"
  17. CornerRadius="0"
  18. ExtendClientAreaChromeHints="NoChrome"
  19. ExtendClientAreaTitleBarHeightHint="-1"
  20. ExtendClientAreaToDecorationsHint="True"
  21. IsHitTestVisible="False"
  22. ShowInTaskbar="False"
  23. SystemDecorations="None"
  24. Topmost="True"
  25. WindowStartupLocation="CenterScreen"
  26. mc:Ignorable="d">
  27. <StackPanel
  28. HorizontalAlignment="Center"
  29. VerticalAlignment="Center"
  30. Orientation="Vertical">
  31. <suki:Loading
  32. Width="220"
  33. Height="220"
  34. LoadingStyle="Glow" />
  35. <TextBlock
  36. HorizontalAlignment="Center"
  37. VerticalAlignment="Center"
  38. FontSize="22"
  39. FontWeight="Bold"
  40. Text="启动中" />
  41. </StackPanel>
  42. </Window>