CPDFAbstractInfoControl.xaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <UserControl x:Class="Compdfkit_Tools.PDFControl.CPDFAbstractInfoControl"
  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. mc:Ignorable="d">
  7. <GroupBox Header="Abstract">
  8. <StackPanel Orientation="Vertical" Margin="19,12,0,0">
  9. <StackPanel Orientation="Horizontal" Height="30">
  10. <TextBlock Text="File Name:"></TextBlock>
  11. <TextBlock x:Name="FileNameTextBlock" TextWrapping="NoWrap" Margin="4,0,0,0" Foreground="#999999"/>
  12. </StackPanel>
  13. <StackPanel Orientation="Horizontal" Height="30">
  14. <TextBlock Text="Size:"></TextBlock>
  15. <TextBlock x:Name="FileSizeTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  16. </StackPanel>
  17. <StackPanel Orientation="Horizontal" Height="30">
  18. <TextBlock Text="Title:"></TextBlock>
  19. <TextBlock x:Name="TitleTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  20. </StackPanel>
  21. <StackPanel Orientation="Horizontal" Height="30">
  22. <TextBlock Text="Author:"></TextBlock>
  23. <TextBlock x:Name="AuthorTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  24. </StackPanel>
  25. <StackPanel Orientation="Horizontal" Height="30">
  26. <TextBlock Text="Subject:"></TextBlock>
  27. <TextBlock x:Name="SubjectTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  28. </StackPanel>
  29. <StackPanel Orientation="Horizontal" Height="30">
  30. <TextBlock Text="Keywords:"></TextBlock>
  31. <TextBlock x:Name="KeywordTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  32. </StackPanel>
  33. </StackPanel>
  34. </GroupBox>
  35. </UserControl>