ThumbnailView.xaml 1.4 KB

12345678910111213141516171819202122232425
  1. <UserControl x:Class="NEIntelligentControl2.Views.BoostStation.ThumbnailView"
  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:NEIntelligentControl2.Views.BoostStation"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800" Loaded="UserControl_Loaded" Unloaded="UserControl_Unloaded" MouseLeftButtonDown="UserControl_MouseLeftButtonDown">
  9. <!--<UserControl.Effect>
  10. <DropShadowEffect ShadowDepth="0" Color="White"/>
  11. </UserControl.Effect>-->
  12. <Border Background="#FF2B77DC" CornerRadius="8" Margin="10" x:Name="_bd">
  13. <Grid Margin="6">
  14. <Grid.RowDefinitions>
  15. <RowDefinition/>
  16. <RowDefinition Height="Auto"/>
  17. </Grid.RowDefinitions>
  18. <Border Background="#FF0B2F6A">
  19. <Viewbox x:Name="_vb"/>
  20. </Border>
  21. <!--<svg:SVGView x:Name="_svg"/>-->
  22. <TextBlock x:Name="_TBTitle" Grid.Row="1" HorizontalAlignment="Center" Margin="10" Foreground="White" FontSize="16" FontWeight="Bold"/>
  23. </Grid>
  24. </Border>
  25. </UserControl>