12345678910111213141516171819202122232425262728293031323334353637 |
- <UserControl x:Class="compdfkit_tools.PDFControl.CPDFAbstractInfoControl"
- 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"
- mc:Ignorable="d"
- d:DesignHeight="220" d:DesignWidth="200">
- <Grid Margin="10,0,0,0">
- <StackPanel Orientation="Vertical">
- <TextBlock Text="摘要" Height="40"></TextBlock>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="文件名" Width="40"></TextBlock>
- <TextBlock x:Name="FileNameTextBlock" TextWrapping="NoWrap" />
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="大小" Width="40"></TextBlock>
- <TextBlock x:Name="FileSizeTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="标题" Width="40"></TextBlock>
- <TextBlock x:Name="TitleTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="作者" Width="40"></TextBlock>
- <TextBlock x:Name="AuthorTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="主题" Width="40"></TextBlock>
- <TextBlock x:Name="SubjectTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="关键字" Width="40"></TextBlock>
- <TextBlock x:Name="KeywordTextBlock"></TextBlock>
- </StackPanel>
- </StackPanel>
- </Grid>
- </UserControl>
|