12345678910111213141516 |
- <Window x:Class="aipdev.SplashWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- 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"
- mc:Ignorable="d"
- Height="489" Width="392" ResizeMode="NoResize" WindowStyle="None" Background="Transparent" WindowStartupLocation="CenterScreen" Topmost="True" AllowsTransparency="True" ShowInTaskbar="False">
- <Grid>
- <Image Source="Resources/Images/Splash.png"/>
- <Border BorderThickness="1,0,1,0" BorderBrush="Black"/>
- <StackPanel Margin="0,168,0,0" HorizontalAlignment="Center">
- <TextBlock HorizontalAlignment="Center" FontSize="30" Text="开发平台"/>
- <TextBlock HorizontalAlignment="Center" FontSize="16" FontStyle="Italic" Margin="0,4,0,0" Text="正在启动..."/>
- </StackPanel>
- </Grid>
- </Window>
|