123456789101112131415161718192021222324252627282930313233343536 |
- <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">
- <GroupBox Header="Abstract">
- <StackPanel Orientation="Vertical" Margin="19,12,0,0">
-
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="File Name:"></TextBlock>
- <TextBlock x:Name="FileNameTextBlock" TextWrapping="NoWrap" Margin="4,0,0,0" Foreground="#999999"/>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Size:"></TextBlock>
- <TextBlock x:Name="FileSizeTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Title:"></TextBlock>
- <TextBlock x:Name="TitleTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Author:"></TextBlock>
- <TextBlock x:Name="AuthorTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Subject:"></TextBlock>
- <TextBlock x:Name="SubjectTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Keywords:"></TextBlock>
- <TextBlock x:Name="KeywordTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- </StackPanel>
- </GroupBox>
- </UserControl>
|