|
@@ -3,35 +3,34 @@
|
|
|
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>
|
|
|
+ mc:Ignorable="d">
|
|
|
+ <GroupBox Header="Abstract">
|
|
|
+ <StackPanel Orientation="Vertical" Margin="19,12,0,0">
|
|
|
+
|
|
|
<StackPanel Orientation="Horizontal" Height="30">
|
|
|
- <TextBlock Text="文件名" Width="40"></TextBlock>
|
|
|
- <TextBlock x:Name="FileNameTextBlock" TextWrapping="NoWrap" />
|
|
|
+ <TextBlock Text="Name:"></TextBlock>
|
|
|
+ <TextBlock x:Name="FileNameTextBlock" TextWrapping="NoWrap" Margin="4,0,0,0" Foreground="#999999"/>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Height="30">
|
|
|
- <TextBlock Text="大小" Width="40"></TextBlock>
|
|
|
- <TextBlock x:Name="FileSizeTextBlock"></TextBlock>
|
|
|
+ <TextBlock Text="Size:"></TextBlock>
|
|
|
+ <TextBlock x:Name="FileSizeTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Height="30">
|
|
|
- <TextBlock Text="标题" Width="40"></TextBlock>
|
|
|
- <TextBlock x:Name="TitleTextBlock"></TextBlock>
|
|
|
+ <TextBlock Text="Title:"></TextBlock>
|
|
|
+ <TextBlock x:Name="TitleTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Height="30">
|
|
|
- <TextBlock Text="作者" Width="40"></TextBlock>
|
|
|
- <TextBlock x:Name="AuthorTextBlock"></TextBlock>
|
|
|
+ <TextBlock Text="Author:"></TextBlock>
|
|
|
+ <TextBlock x:Name="AuthorTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Height="30">
|
|
|
- <TextBlock Text="主题" Width="40"></TextBlock>
|
|
|
- <TextBlock x:Name="SubjectTextBlock"></TextBlock>
|
|
|
+ <TextBlock Text="Theme:"></TextBlock>
|
|
|
+ <TextBlock x:Name="SubjectTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
|
|
|
</StackPanel>
|
|
|
<StackPanel Orientation="Horizontal" Height="30">
|
|
|
- <TextBlock Text="关键字" Width="40"></TextBlock>
|
|
|
- <TextBlock x:Name="KeywordTextBlock"></TextBlock>
|
|
|
+ <TextBlock Text="Keywords:"></TextBlock>
|
|
|
+ <TextBlock x:Name="KeywordTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
|
|
|
</StackPanel>
|
|
|
</StackPanel>
|
|
|
- </Grid>
|
|
|
+ </GroupBox>
|
|
|
</UserControl>
|