CPDFTempStampUI.xaml 1.7 KB

123456789101112131415161718192021222324252627282930
  1. <UserControl x:Class="ComPDFKit.Controls.PDFControlUI.CPDFTempStampUI"
  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:cpdftools="clr-namespace:ComPDFKit.Controls.PDFControl"
  7. xmlns:local="clr-namespace:ComPDFKit.Controls.PDFControlUI"
  8. mc:Ignorable="d"
  9. d:DesignHeight="800" d:DesignWidth="300">
  10. <ScrollViewer VerticalScrollBarVisibility="Auto">
  11. <Grid Background="#FAFCFF">
  12. <StackPanel Orientation="Vertical">
  13. <Border BorderThickness="1" BorderBrush="#1A000000">
  14. <Grid Height="40" Background="White" >
  15. <TextBlock x:Name="TitileTextBlock" Text="Image" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="16" FontFamily="Microsoft YaHei"></TextBlock>
  16. </Grid>
  17. </Border>
  18. <StackPanel Orientation="Vertical" Height="150">
  19. <cpdftools:CPDFAnnotationPreviewerControl x:Name="CPDFAnnotationPreviewerControl" Height="100" Margin="16">
  20. </cpdftools:CPDFAnnotationPreviewerControl>
  21. </StackPanel>
  22. <StackPanel Height="200" Margin="16">
  23. <TextBlock Text="Note"></TextBlock>
  24. <TextBox Height="150" x:Name="NoteTextBox" TextChanged="NoteTextBox_TextChanged" TextWrapping="Wrap" AcceptsReturn="True"></TextBox>
  25. </StackPanel>
  26. </StackPanel>
  27. </Grid>
  28. </ScrollViewer>
  29. </UserControl>