CPDFCreateInfoControl.xaml 1.8 KB

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