星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CountdownWindow.xaml 1.4KB

123456789101112131415161718192021222324252627
  1. <Window x:Class="XHWK.WKTool.CountdownWindow"
  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:XHWK.WKTool"
  7. xmlns:gifLib="http://wpfanimatedgif.codeplex.com"
  8. mc:Ignorable="d"
  9. Title="CountdownWindow" Height="904.335" Width="1235.26" AllowsTransparency="True"
  10. ShowInTaskbar="False"
  11. WindowStartupLocation="CenterOwner" WindowState="Maximized"
  12. WindowStyle="None">
  13. <Window.Background>
  14. <SolidColorBrush Opacity="0.10" Color="#292C2E" />
  15. </Window.Background>
  16. <Grid>
  17. <!--<Image x:Name="ImgGif"
  18. Width="600"
  19. Height="600"
  20. gifLib:ImageBehavior.AnimatedSource=".\Images\countdown.gif" MediaElement.MediaEnded="Image_MediaEnded"/>-->
  21. <Image x:Name="imgLoding"
  22. Width="600"
  23. Height="600"
  24. Source=".\Images\countdown3_1.png" />
  25. <Label x:Name="lblShortcut" Content="开始/暂停:Ctrl+F5 停止:Ctrl+S" Height="77" Margin="0,750,0,0" Width="682" Foreground="#FF5B5151" FontSize="36" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/>
  26. </Grid>
  27. </Window>