DocumentPage.xaml 1.0 KB

12345678910111213141516171819
  1. <UserControl x:Name="Control"
  2. x:Class="PRSDesktop.Panels.DataEntry.DocumentPage"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:local="clr-namespace:PRSDesktop.Panels.DataEntry"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <Border x:Name="Selection"
  11. Padding="15"
  12. BorderBrush="{Binding ElementName=Control,Path=SelectionBorder}" BorderThickness="1"
  13. Background="{Binding ElementName=Control,Path=SelectionBackground}"
  14. MouseDown="Border_MouseDown">
  15. <Border BorderBrush="Black" BorderThickness="1">
  16. <Image x:Name="Image" Source="{Binding ElementName=Control,Path=Page.Thumbnail}"/>
  17. </Border>
  18. </Border>
  19. </UserControl>