ImageCanvas.xaml 847 B

123456789101112131415161718
  1. <UserControl x:Class="IDInfoExtraction.ImageCanvas"
  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:IDInfoExtraction"
  7. mc:Ignorable="d"
  8. d:DesignHeight="440" d:DesignWidth="500" SizeChanged="CanvasSizeChanged"
  9. >
  10. <Grid>
  11. <Grid Grid.Row="1" Grid.Column="1">
  12. <Grid Grid.Row="0" Grid.Column="0">
  13. <Image x:Name="RGBImageShow" Stretch="Uniform"/>
  14. <Canvas x:Name="RGBImageCanvas" ClipToBounds="True"/>
  15. </Grid>
  16. </Grid>
  17. </Grid>
  18. </UserControl>