12345678910111213141516171819202122232425262728293031323334 |
- <UserControl x:Class="compdfkit_tools.PDFControl.CPDFCreateInfoControl"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:compdfkit_tools"
- mc:Ignorable="d"
- d:DesignHeight="190" d:DesignWidth="200">
- <Grid>
- <StackPanel Orientation="Vertical" Margin="10,0,0,0">
- <TextBlock Text="创建信息" Height="40"></TextBlock>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="版本" Width="50"></TextBlock>
- <TextBlock x:Name="VersionTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="页数" Width="50"></TextBlock>
- <TextBlock x:Name="PageCountTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="创建者" Width="50"></TextBlock>
- <TextBlock x:Name="CreatorTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="创建时间" Width="50"></TextBlock>
- <TextBlock x:Name="CreationDateTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="修改时间" Width="50"></TextBlock>
- <TextBlock x:Name="ModificationDateTextBlock"></TextBlock>
- </StackPanel>
- </StackPanel>
- </Grid>
- </UserControl>
|