SplashWindow.xaml 1.2 KB

123456789101112131415161718
  1. <Window x:Class="CCDCountWpf.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. xmlns:local="clr-namespace:CCDCountWpf"
  7. mc:Ignorable="d"
  8. Title="SplashWindow" Height="450" Width="800"
  9. WindowStyle="None" AllowsTransparency="True"
  10. Background="Transparent" WindowStartupLocation="CenterScreen" Icon="/FromImage/mmexport1752891278116.jpg">
  11. <Grid Background="White">
  12. <TextBlock Text="翰林航宇视觉数粒系统" HorizontalAlignment="Center"
  13. Foreground="#FF0072BF" FontSize="40" VerticalAlignment="Top" Cursor="Arrow" Margin="0,20,0,0"/>
  14. <Image Source="/FromImage/mmexport1752891278116.jpg" Stretch="Fill" Width="200" Height="200" Cursor="Arrow"/>
  15. <TextBlock Text="程序启动中" HorizontalAlignment="Right" Margin="0,0,60,20"
  16. Foreground="#FF0072BF" FontSize="40" VerticalAlignment="Bottom" Cursor="Arrow"/>
  17. </Grid>
  18. </Window>