1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <UserControl x:Class="Compdfkit_Tools.PDFControl.CertificateDetailControl"
- 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="450" d:DesignWidth="600">
- <Grid>
- <Grid Background="#ffffff" Margin="20,0,0,0" Panel.ZIndex="1" Height="20" HorizontalAlignment="Left" VerticalAlignment="Top">
- <TextBlock Text="Certificate Data" 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="Versions: " FontSize="14"></TextBlock>
- <TextBlock x:Name="AwardTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Signature algorithm: " FontSize="14"></TextBlock>
- <TextBlock x:Name="AlgorithmTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Thematic: " FontSize="14"></TextBlock>
- <TextBlock x:Name="ThematicTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Product Key: " FontSize="14"></TextBlock>
- <TextBlock x:Name="ProductKeyTxt" 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="Certificate policy: " FontSize="14"></TextBlock>
- <TextBlock x:Name="CertificatePolicyTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
-
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="CRL distribution point: " FontSize="14"></TextBlock>
- <TextBlock x:Name="CRLTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="X.509 data: " FontSize="14"></TextBlock>
- <TextBlock x:Name="X509Txt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Issuing agency information access: " FontSize="14"></TextBlock>
- <TextBlock x:Name="AgencyInformationTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
-
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Issuing authority secret key identification: " FontSize="14"></TextBlock>
- <TextBlock x:Name="AuthoritySecretKey" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Subject Secret Key Identifier: " FontSize="14"></TextBlock>
- <TextBlock x:Name="SubjectSecretKey" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Basic limitations: " FontSize="14"></TextBlock>
- <TextBlock x:Name="Basiclimitations" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Usage of the secret key: " FontSize="14"></TextBlock>
- <TextBlock x:Name="UsageTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="Public key: " FontSize="14"></TextBlock>
- <TextBlock x:Name="PublicKeyTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="SHA1 Abstract: " FontSize="14"></TextBlock>
- <TextBlock x:Name="SHA1AbstractTxt" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
-
- <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
- <TextBlock Text="MD5 Abstract: " FontSize="14"></TextBlock>
- <TextBlock x:Name="MD5Abstract" Foreground="#666" FontSize="14"></TextBlock>
- </StackPanel>
- </StackPanel>
- </Border>
- </Grid>
- </UserControl>
|