| 123456789101112131415161718192021222324252627 |
- <UserControl x:Class="ivf_tl_Manage.UserControls.PicSourceUserControl"
- 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:ivf_tl_Manage.UserControls"
- mc:Ignorable="d"
- FontFamily="{StaticResource sourceHan}"
- Width="210" Height="242"
- x:Name="_PicSourceUserControl">
- <Border x:Name="templateRoot" SnapsToDevicePixels="True" Width="210" Height="242" Background="#DDDDDD" CornerRadius="14">
- <Canvas Background="Transparent" Width="210" Height="242" SnapsToDevicePixels="True" Focusable="False">
- <Image Canvas.Left="15" Canvas.Top="15" Width="180" Height="180" SnapsToDevicePixels="True" Focusable="False"
- Source="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/PicLoadIcon.png"/>
- <TextBlock Width="210" TextAlignment="Center" Canvas.Top="125" FontWeight="Medium" Foreground="#9B9B9B" FontSize="18" Text="{DynamicResource 0497}"/>
- <Image Canvas.Left="15" Canvas.Top="15" Source="{Binding ElementName=_PicSourceUserControl,Path=ImageSourceUrl}" Width="180" Height="180" SnapsToDevicePixels="True" Focusable="False">
- <Image.Clip>
- <RectangleGeometry Rect="0,0,180,180" RadiusX="14" RadiusY="14"/>
- </Image.Clip>
- </Image>
- <Border Width="210" Canvas.Top="195" Height="47" Background="Transparent" SnapsToDevicePixels="True" Focusable="False">
- <TextBlock FontWeight="Medium" Foreground="#4D4D4D" FontSize="18" Background="Transparent" HorizontalAlignment="Center" VerticalAlignment="Center" SnapsToDevicePixels="True" Focusable="False"
- Text="{Binding ElementName=_PicSourceUserControl,Path=ImageInfoString}"/>
- </Border>
- </Canvas>
- </Border>
- </UserControl>
|