| 1234567891011121314151617181920212223242526272829303132333435 |
- <UserControl x:Class="ivf_tl_Operate.CustomUserControls.PhotoBox"
- 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_Operate.CustomUserControls"
- mc:Ignorable="d" x:Name="_PhotoBox">
- <Grid Width="389" Height="430" Margin="40 30 5 5">
- <Grid.Background>
- <ImageBrush ImageSource="/ivf_tl_Operate;component/Resources/Image/photo_background.png"/>
- </Grid.Background>
- <Grid.RowDefinitions>
- <RowDefinition Height="350"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Image x:Name="_image" Source="{Binding ElementName=_PhotoBox,Path=ImageSource}" Grid.Row="0" Width="300" Height="300" Canvas.Left="50" Canvas.Top="50" Stretch="Uniform"/>
- <StackPanel Grid.Row="0" Width="70" Height="70" HorizontalAlignment="Left" VerticalAlignment="Top">
- <TextBlock x:Name="_textId" Text="1" FontSize="38" Foreground="#6E7276" Margin="0 10 0 0" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </StackPanel>
- <Grid Grid.Row="1" VerticalAlignment="Center">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="auto"/>
- </Grid.ColumnDefinitions>
- <TextBlock x:Name="_textTime" Grid.Column="0" Text="12:23:35" FontSize="30" Foreground="#6E7276" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- <Image x:Name="_imageYes" Visibility="Collapsed" Grid.Column="1" Width="74" Height="74" Source="/ivf_tl_Operate;component/Resources/Image/photo_yes.png" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0 0 15 11"/>
- <Image x:Name="_imageNo" Visibility="Collapsed" Grid.Column="2" Width="74" Height="74" Source="/ivf_tl_Operate;component/Resources/Image/photo_no.png" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0 0 15 11"/>
- <Image x:Name="_imageFreezable" Visibility="Collapsed" Grid.Column="3" Width="74" Height="74" Source="/ivf_tl_Operate;component/Resources/Image/photo_freezable.png" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0 0 15 11"/>
- <Image x:Name="_imageMore" Visibility="Collapsed" Grid.Column="4" Width="74" Height="74" Source="/ivf_tl_Operate;component/Resources/Image/photo_2pn.png" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0 0 15 11"/>
- </Grid>
- </Grid>
- </UserControl>
|