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

4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
1234567891011121314151617181920212223242526
  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="450" Width="800" 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\countdown_3.png" />
  25. </Grid>
  26. </Window>