|
123456789101112131415161718192021222324252627 |
- <Window x:Class="XHWK.WKTool.CountdownWindow"
- 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:XHWK.WKTool"
- xmlns:gifLib="http://wpfanimatedgif.codeplex.com"
- mc:Ignorable="d"
- Title="CountdownWindow" Height="904.335" Width="1235.26" AllowsTransparency="True"
- ShowInTaskbar="False"
- Topmost="True"
- WindowStartupLocation="CenterOwner" WindowState="Maximized"
- WindowStyle="None">
- <Window.Background>
- <SolidColorBrush Opacity="0.10" Color="#292C2E" />
- </Window.Background>
- <Grid>
- <!--<Image x:Name="ImgGif"
- Width="600"
- Height="600"
- gifLib:ImageBehavior.AnimatedSource=".\Images\countdown.gif" MediaElement.MediaEnded="Image_MediaEnded"/>-->
- <Image x:Name="imgLoding"
- Source=".\Images\countdown3_1.png" HorizontalAlignment="Center" VerticalAlignment="Center" Width="300" />
- <Border x:Name="borShortcut" Margin="0,450,0,0" Height="60" Width="550" Opacity="0.3" Background="#999999" CornerRadius="30"/>
- <Label x:Name="lblShortcut" Content="开始/暂停:Ctrl+F5 停止:Ctrl+S" Height="60" Margin="0,450,0,0" Width="682" FontWeight="Bold" Foreground="#FFFFFF" FontSize="30" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Visibility="Visible"/>
- </Grid>
- </Window>
|