CPDFCreateInfoControl.xaml 1.9 KB

123456789101112131415161718192021222324252627282930313233
  1. <UserControl x:Class="compdfkit_tools.PDFControl.CPDFCreateInfoControl"
  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:compdfkit_tools"
  7. mc:Ignorable="d">
  8. <GroupBox Header="Create Information">
  9. <StackPanel Orientation="Vertical" Margin="19,12,0,0">
  10. <StackPanel Orientation="Horizontal" Height="30">
  11. <TextBlock Text="Version:"></TextBlock>
  12. <TextBlock x:Name="VersionTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  13. </StackPanel>
  14. <StackPanel Orientation="Horizontal" Height="30">
  15. <TextBlock Text="Pages:"></TextBlock>
  16. <TextBlock x:Name="PageCountTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  17. </StackPanel>
  18. <StackPanel Orientation="Horizontal" Height="30">
  19. <TextBlock Text="Creator:"></TextBlock>
  20. <TextBlock x:Name="CreatorTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  21. </StackPanel>
  22. <StackPanel Orientation="Horizontal" Height="30">
  23. <TextBlock Text="Creation Date:"></TextBlock>
  24. <TextBlock x:Name="CreationDateTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  25. </StackPanel>
  26. <StackPanel Orientation="Horizontal" Height="30">
  27. <TextBlock Text="Modification Date:"></TextBlock>
  28. <TextBlock x:Name="ModificationDateTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
  29. </StackPanel>
  30. </StackPanel>
  31. </GroupBox>
  32. </UserControl>