| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <UserControl x:Class="ivf_tl_Manage.UserControls.MarkDetailItem1"
- 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"
- Background="Transparent">
- <Grid x:Name="_container" Width="1750" Height="290" Background="#EEEEEE" Margin="0,0,0,0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="38"></ColumnDefinition>
- <ColumnDefinition Width="288"></ColumnDefinition>
- <ColumnDefinition Width="14"></ColumnDefinition>
- <ColumnDefinition Width="1431"></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="25"></RowDefinition>
- </Grid.RowDefinitions>
- <Rectangle Grid.Row="0" x:Name="_rect" Fill="#CFCFCF" Height="290" Width="4" HorizontalAlignment="Center" Grid.RowSpan="2" ></Rectangle>
- <Ellipse Grid.Row="0" Height="24" HorizontalAlignment="Center" VerticalAlignment="Center" Panel.ZIndex="2" Width="24" x:Name="ellipse_samll"></Ellipse>
- <Ellipse Grid.Row="0" Height="38" Width="38" HorizontalAlignment="Center" VerticalAlignment="Center" Panel.ZIndex="1" x:Name="ellipse_big"></Ellipse>
- <TextBlock x:Name="tb_time" Margin="23,0,0,0" Text="2022-08-06 13:52" Grid.Column="1" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="22" Foreground="#4D4D4D" FontWeight="Medium" ></TextBlock>
- <StackPanel Orientation="Horizontal" Grid.Column="3" Grid.Row="0" Grid.RowSpan="2" Background="Transparent">
-
- <Border x:Name="rect_big" Margin="3" Width="1394" Height="270" BorderThickness="0" Background="Transparent" CornerRadius="14,14,14,14" >
- <Border.Effect >
- <DropShadowEffect Opacity="0.15" BlurRadius="5.5" ShadowDepth="1" Direction="270" Color="Black"/>
- </Border.Effect>
-
- <StackPanel Orientation="Horizontal">
- <Border x:Name="rect_samll" Width="14" Height="270" BorderThickness="0" BorderBrush="Transparent" CornerRadius="14,0,0,14" ></Border>
- <Image x:Name="img" Width="164" Height="164" Margin="58,0,0,0" MouseEnter="img_MouseEnter" MouseLeave="img_MouseLeave"/>
- <Grid Width="1080" x:Name="st_container" >
- <!--<Grid.RowDefinitions>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="0"></RowDefinition>
- </Grid.RowDefinitions>-->
- <!--<TextBlock x:Name="tb_title" Grid.Row="0" Text="囊胚期" Margin="30,15,0,0" FontSize="20" Foreground="#4D75AC" FontWeight="Medium" ></TextBlock>-->
- <StackPanel Grid.Row="0" x:Name="st_markData" Orientation="Vertical" VerticalAlignment="Center"></StackPanel>
- </Grid>
- </StackPanel>
- </Border>
- </StackPanel>
- </Grid>
- </UserControl>
|