PhotoBox.xaml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <UserControl x:Class="ivf_tl_Operate.CustomUserControls.PhotoBox"
  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:ivf_tl_Operate.CustomUserControls"
  7. mc:Ignorable="d" x:Name="_PhotoBox">
  8. <Grid Width="389" Height="430" Margin="40 30 5 5">
  9. <Grid.Background>
  10. <ImageBrush ImageSource="/ivf_tl_Operate;component/Resources/Image/photo_background.png"/>
  11. </Grid.Background>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="350"/>
  14. <RowDefinition/>
  15. </Grid.RowDefinitions>
  16. <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"/>
  17. <StackPanel Grid.Row="0" Width="70" Height="70" HorizontalAlignment="Left" VerticalAlignment="Top">
  18. <TextBlock x:Name="_textId" Text="1" FontSize="38" Foreground="#6E7276" Margin="0 10 0 0" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  19. </StackPanel>
  20. <Grid Grid.Row="1" VerticalAlignment="Center">
  21. <Grid.ColumnDefinitions>
  22. <ColumnDefinition Width="*"/>
  23. <ColumnDefinition Width="auto"/>
  24. <ColumnDefinition Width="auto"/>
  25. <ColumnDefinition Width="auto"/>
  26. <ColumnDefinition Width="auto"/>
  27. </Grid.ColumnDefinitions>
  28. <TextBlock x:Name="_textTime" Grid.Column="0" Text="12:23:35" FontSize="30" Foreground="#6E7276" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  29. <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"/>
  30. <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"/>
  31. <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"/>
  32. <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"/>
  33. </Grid>
  34. </Grid>
  35. </UserControl>