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

Uc_VideoItem.xaml 3.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <UserControl x:Class="XHWK.WKTool.UControl.Uc_VideoItem"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:XHWK.WKTool.UControl"
  7. mc:Ignorable="d"
  8. d:DesignHeight="260" d:DesignWidth="250">
  9. <Grid>
  10. <Button x:Name="BtnVideoPlay" HorizontalAlignment="Center" Width="200" Height="130" Margin="25,10,25,0" VerticalAlignment="Top" Cursor="Hand" Click="BtnVideoPlay_Click">
  11. <Image x:Name="ImgVideo" VerticalAlignment="Top" Width="200" Height="130" Margin="0,0,0,0" Cursor="Hand" Stretch="Fill"/>
  12. </Button>
  13. <Image x:Name="ImgVideoPlay" Source="/星火微课;component/Images/VideoList_Play.png" HorizontalAlignment="Center" VerticalAlignment="Top" Width="60" Margin="0,50,0,0" Cursor="Hand" MouseLeftButtonDown="Image_MouseLeftButtonDown" />
  14. <TextBlock x:Name="TbName" Text="一二三四五六七八九十一..." HorizontalAlignment="Center" Margin="15,150,15,0" TextWrapping="Wrap" VerticalAlignment="Top" Foreground="#FF3492F4" FontSize="18" TextAlignment="Center" ToolTip="" Visibility="Visible" MouseLeftButtonDown="TextBlock_MouseLeftButtonDown"/>
  15. <TextBox x:Name="TxtModify" HorizontalAlignment="Left" Height="30" Margin="25,147,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="180" FontSize="16" Visibility="Hidden" LostFocus="TxtModify_LostFocus" KeyUp="TxtModify_KeyUp">
  16. <TextBox.Resources>
  17. <Style TargetType="{x:Type Border}">
  18. <Setter Property="CornerRadius" Value="3"/>
  19. <Setter Property="BorderBrush" Value="#3492F4"/>
  20. </Style>
  21. </TextBox.Resources>
  22. </TextBox>
  23. <Button x:Name="BtnNameModifyOK" HorizontalAlignment="Left" Margin="200,147,0,0" VerticalAlignment="Top" Width="30" Height="30" Background="White" BorderBrush="#FFABADB3" Click="BtnNameModifyOK_Click" Visibility="Hidden">
  24. <Button.Resources>
  25. <Style TargetType="{x:Type Border}">
  26. <Setter Property="CornerRadius" Value="3"/>
  27. <Setter Property="BorderBrush" Value="#3492F4"/>
  28. </Style>
  29. </Button.Resources>
  30. <Image Source="/星火微课;component/Images/VideoList_OK.png"></Image>
  31. </Button>
  32. <Label x:Name="lblDateSize" Content="2020-10-10 10:10:00|1000.00MB" HorizontalAlignment="Center" Margin="0,175,0,0" VerticalAlignment="Top" Height="30" Width="240" Foreground="#FF9A9A9A" FontSize="13" HorizontalContentAlignment="Center"/>
  33. <Border x:Name="BorUploadBtn" CornerRadius="3" HorizontalAlignment="Left" Margin="25,210,0,0" VerticalAlignment="Top" Width="90" Height="40" Background="#FF3492F4">
  34. <Button x:Name="BtnUpload" Content="上传" HorizontalAlignment="Left" Width="90" Height="40" Foreground="White" FontSize="18" Click="BtnUpload_Click" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"/>
  35. </Border>
  36. <Border CornerRadius="3" Width="90" Height="40" Background="#FFF0582C" HorizontalAlignment="Right" Margin="0,210,25,0" VerticalAlignment="Top">
  37. <Button x:Name="BtnDelVideo" Content="删除" Width="90" Height="40" Foreground="White" FontSize="18" Background="Transparent" Click="BtnDelVideo_Click" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
  38. </Button>
  39. </Border>
  40. </Grid>
  41. </UserControl>