123456789101112131415161718192021222324252627282930313233343536373839 |
- <UserControl x:Class="Compdfkit_Tools.PDFControl.SummaryControl"
- 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.PDFControl"
- mc:Ignorable="d"
- d:DesignHeight="160" d:DesignWidth="600">
- <Grid>
- <Grid Background="#ffffff" Margin="20,0,0,0" Panel.ZIndex="1" Height="20" HorizontalAlignment="Left" VerticalAlignment="Top">
- <TextBlock Text="Summary" FontWeight="Bold" FontSize="16"></TextBlock>
- </Grid>
- <Border Margin="12" BorderBrush="#33000000" BorderThickness="1" >
- <StackPanel VerticalAlignment="Center" Margin="20,0,0,0">
-
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Award: " FontSize="14"></TextBlock>
- <TextBlock x:Name="AwardTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Grantor: " FontSize="14"></TextBlock>
- <TextBlock x:Name="Grantor" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Validity period: " FontSize="14"></TextBlock>
- <TextBlock x:Name="ValidityPeriod" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Anticipated use: " FontSize="14"></TextBlock>
- <TextBlock x:Name="AnticipatedUse" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
-
- </StackPanel>
- </Border>
- </Grid>
- </UserControl>
|