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