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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Window
  2. x:Class="XHWK.WKTool.CountdownWindow"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. Title="CountdownWindow"
  8. Width="600"
  9. Height="600"
  10. AllowsTransparency="True"
  11. Background="Transparent"
  12. ShowInTaskbar="False"
  13. Topmost="True"
  14. WindowStartupLocation="CenterScreen"
  15. WindowState="Normal"
  16. WindowStyle="None"
  17. mc:Ignorable="d">
  18. <Grid>
  19. <Image
  20. x:Name="ImgLoding"
  21. Width="300"
  22. HorizontalAlignment="Center"
  23. VerticalAlignment="Center"
  24. Source=".\Images\countdown3_1.png" />
  25. <Border
  26. x:Name="BorShortcut"
  27. Width="550"
  28. Height="60"
  29. Margin="0,450,0,0"
  30. Background="#999999"
  31. CornerRadius="30"
  32. Opacity="0.3"
  33. Visibility="Hidden" />
  34. <Label
  35. x:Name="LblShortcut"
  36. Height="60"
  37. Margin="0,450,0,0"
  38. HorizontalContentAlignment="Center"
  39. VerticalContentAlignment="Center"
  40. Content="开始/暂停:Ctrl+F5 停止:Ctrl+F6"
  41. FontSize="26"
  42. FontWeight="Bold"
  43. Foreground="#FFFFFF"
  44. Visibility="Hidden" />
  45. </Grid>
  46. </Window>