星火微课系统客户端
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.6KB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
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. Topmost="True"
  12. WindowStartupLocation="CenterOwner" WindowState="Maximized"
  13. WindowStyle="None">
  14. <Window.Background>
  15. <SolidColorBrush Opacity="0.10" Color="#292C2E" />
  16. </Window.Background>
  17. <Grid>
  18. <!--<Image x:Name="ImgGif"
  19. Width="600"
  20. Height="600"
  21. gifLib:ImageBehavior.AnimatedSource=".\Images\countdown.gif" MediaElement.MediaEnded="Image_MediaEnded"/>-->
  22. <Image x:Name="imgLoding"
  23. Source=".\Images\countdown3_1.png" HorizontalAlignment="Center" VerticalAlignment="Center" Width="300" />
  24. <Border x:Name="borShortcut" Margin="0,450,0,0" Height="60" Width="550" Opacity="0.3" Background="#999999" CornerRadius="30"/>
  25. <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"/>
  26. </Grid>
  27. </Window>