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

VideoPlaybackWindow.xaml 1.8KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Window x:Class="XHWK.WKTool.VideoPlaybackWindow"
  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. mc:Ignorable="d"
  7. Title="VideoPlaybackWindow" Height="693" Width="1039" AllowsTransparency="True"
  8. ShowInTaskbar="False"
  9. WindowStartupLocation="CenterOwner"
  10. WindowStyle="None">
  11. <Grid Background="#121212">
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="37"/>
  14. <RowDefinition Height="*"/>
  15. <RowDefinition Height="60"/>
  16. </Grid.RowDefinitions>
  17. <Grid Grid.Row="0" Margin="5,5,5,0">
  18. <TextBlock Text="预览" HorizontalAlignment="Left" Foreground="#FFFFFF" FontSize="16"/>
  19. <TextBlock x:Name="txbVideoName" Text="微课1.mp4" HorizontalAlignment="Center" Foreground="#FFFFFF" FontSize="16"/>
  20. </Grid>
  21. <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
  22. <Button Cursor="Hand" x:Name="btnShrink" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="8,0,8,0">
  23. <Image Source="./Images/microLessonSystem_19.png"/>
  24. </Button>
  25. <Button Cursor="Hand" x:Name="btnEnlarge" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="8,0,8,0">
  26. <Image Source="./Images/microLessonSystem_8.png"/>
  27. </Button>
  28. <Button Cursor="Hand" x:Name="btnDown" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" >
  29. <Image Source="./Images/microLessonSystem_10.png"/>
  30. </Button>
  31. </StackPanel>
  32. </Grid>
  33. </Window>