CPDFCreateInfoControl.xaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  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. d:DesignHeight="190" d:DesignWidth="200">
  9. <Grid>
  10. <StackPanel Orientation="Vertical" Margin="10,0,0,0">
  11. <TextBlock Text="创建信息" Height="40"></TextBlock>
  12. <StackPanel Orientation="Horizontal" Height="30">
  13. <TextBlock Text="版本" Width="50"></TextBlock>
  14. <TextBlock x:Name="VersionTextBlock"></TextBlock>
  15. </StackPanel>
  16. <StackPanel Orientation="Horizontal" Height="30">
  17. <TextBlock Text="页数" Width="50"></TextBlock>
  18. <TextBlock x:Name="PageCountTextBlock"></TextBlock>
  19. </StackPanel>
  20. <StackPanel Orientation="Horizontal" Height="30">
  21. <TextBlock Text="创建者" Width="50"></TextBlock>
  22. <TextBlock x:Name="CreatorTextBlock"></TextBlock>
  23. </StackPanel>
  24. <StackPanel Orientation="Horizontal" Height="30">
  25. <TextBlock Text="创建时间" Width="50"></TextBlock>
  26. <TextBlock x:Name="CreationDateTextBlock"></TextBlock>
  27. </StackPanel>
  28. <StackPanel Orientation="Horizontal" Height="30">
  29. <TextBlock Text="修改时间" Width="50"></TextBlock>
  30. <TextBlock x:Name="ModificationDateTextBlock"></TextBlock>
  31. </StackPanel>
  32. </StackPanel>
  33. </Grid>
  34. </UserControl>