12345678910111213141516171819202122232425 |
- <UserControl x:Class="NEIntelligentControl2.Views.BoostStation.ThumbnailView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:NEIntelligentControl2.Views.BoostStation"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800" Loaded="UserControl_Loaded" Unloaded="UserControl_Unloaded" MouseLeftButtonDown="UserControl_MouseLeftButtonDown">
- <!--<UserControl.Effect>
- <DropShadowEffect ShadowDepth="0" Color="White"/>
- </UserControl.Effect>-->
- <Border Background="#FF2B77DC" CornerRadius="8" Margin="10" x:Name="_bd">
- <Grid Margin="6">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <Border Background="#FF0B2F6A">
- <Viewbox x:Name="_vb"/>
- </Border>
- <!--<svg:SVGView x:Name="_svg"/>-->
- <TextBlock x:Name="_TBTitle" Grid.Row="1" HorizontalAlignment="Center" Margin="10" Foreground="White" FontSize="16" FontWeight="Bold"/>
- </Grid>
- </Border>
- </UserControl>
|