SplashWindow.xaml 1010 B

12345678910111213141516
  1. <Window x:Class="aipdev.SplashWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. mc:Ignorable="d"
  7. Height="489" Width="392" ResizeMode="NoResize" WindowStyle="None" Background="Transparent" WindowStartupLocation="CenterScreen" Topmost="True" AllowsTransparency="True" ShowInTaskbar="False">
  8. <Grid>
  9. <Image Source="Resources/Images/Splash.png"/>
  10. <Border BorderThickness="1,0,1,0" BorderBrush="Black"/>
  11. <StackPanel Margin="0,168,0,0" HorizontalAlignment="Center">
  12. <TextBlock HorizontalAlignment="Center" FontSize="30" Text="开发平台"/>
  13. <TextBlock HorizontalAlignment="Center" FontSize="16" FontStyle="Italic" Margin="0,4,0,0" Text="正在启动..."/>
  14. </StackPanel>
  15. </Grid>
  16. </Window>