CertificateDetailControl.xaml 5.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <UserControl x:Class="Compdfkit_Tools.PDFControl.CertificateDetailControl"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Compdfkit_Tools.PDFControl"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="600">
  9. <Grid>
  10. <Grid Background="#ffffff" Margin="20,0,0,0" Panel.ZIndex="1" Height="20" HorizontalAlignment="Left" VerticalAlignment="Top">
  11. <TextBlock Text="Certificate Data" FontWeight="Bold" FontSize="16"></TextBlock>
  12. </Grid>
  13. <Border Margin="12" BorderBrush="#33000000" BorderThickness="1" >
  14. <StackPanel VerticalAlignment="Center" Margin="20,0,0,0">
  15. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  16. <TextBlock Text="Versions: " FontSize="14"></TextBlock>
  17. <TextBlock x:Name="AwardTxt" Foreground="#666" FontSize="14"></TextBlock>
  18. </StackPanel>
  19. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  20. <TextBlock Text="Signature algorithm: " FontSize="14"></TextBlock>
  21. <TextBlock x:Name="AlgorithmTxt" Foreground="#666" FontSize="14"></TextBlock>
  22. </StackPanel>
  23. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  24. <TextBlock Text="Thematic: " FontSize="14"></TextBlock>
  25. <TextBlock x:Name="ThematicTxt" Foreground="#666" FontSize="14"></TextBlock>
  26. </StackPanel>
  27. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  28. <TextBlock Text="Product Key: " FontSize="14"></TextBlock>
  29. <TextBlock x:Name="ProductKeyTxt" Foreground="#666" FontSize="14"></TextBlock>
  30. </StackPanel>
  31. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  32. <TextBlock Text="Validity period: " FontSize="14"></TextBlock>
  33. <TextBlock x:Name="ValidityPeriod" Foreground="#666" FontSize="14"></TextBlock>
  34. </StackPanel>
  35. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  36. <TextBlock Text="Certificate policy: " FontSize="14"></TextBlock>
  37. <TextBlock x:Name="CertificatePolicyTxt" Foreground="#666" FontSize="14"></TextBlock>
  38. </StackPanel>
  39. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  40. <TextBlock Text="CRL distribution point: " FontSize="14"></TextBlock>
  41. <TextBlock x:Name="CRLTxt" Foreground="#666" FontSize="14"></TextBlock>
  42. </StackPanel>
  43. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  44. <TextBlock Text="X.509 data: " FontSize="14"></TextBlock>
  45. <TextBlock x:Name="X509Txt" Foreground="#666" FontSize="14"></TextBlock>
  46. </StackPanel>
  47. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  48. <TextBlock Text="Issuing agency information access: " FontSize="14"></TextBlock>
  49. <TextBlock x:Name="AgencyInformationTxt" Foreground="#666" FontSize="14"></TextBlock>
  50. </StackPanel>
  51. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  52. <TextBlock Text="Issuing authority secret key identification: " FontSize="14"></TextBlock>
  53. <TextBlock x:Name="AuthoritySecretKey" Foreground="#666" FontSize="14"></TextBlock>
  54. </StackPanel>
  55. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  56. <TextBlock Text="Subject Secret Key Identifier: " FontSize="14"></TextBlock>
  57. <TextBlock x:Name="SubjectSecretKey" Foreground="#666" FontSize="14"></TextBlock>
  58. </StackPanel>
  59. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  60. <TextBlock Text="Basic limitations: " FontSize="14"></TextBlock>
  61. <TextBlock x:Name="Basiclimitations" Foreground="#666" FontSize="14"></TextBlock>
  62. </StackPanel>
  63. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  64. <TextBlock Text="Usage of the secret key: " FontSize="14"></TextBlock>
  65. <TextBlock x:Name="UsageTxt" Foreground="#666" FontSize="14"></TextBlock>
  66. </StackPanel>
  67. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  68. <TextBlock Text="Public key: " FontSize="14"></TextBlock>
  69. <TextBlock x:Name="PublicKeyTxt" Foreground="#666" FontSize="14"></TextBlock>
  70. </StackPanel>
  71. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  72. <TextBlock Text="SHA1 Abstract: " FontSize="14"></TextBlock>
  73. <TextBlock x:Name="SHA1AbstractTxt" Foreground="#666" FontSize="14"></TextBlock>
  74. </StackPanel>
  75. <StackPanel Orientation="Horizontal" Margin="0,0,0,6">
  76. <TextBlock Text="MD5 Abstract: " FontSize="14"></TextBlock>
  77. <TextBlock x:Name="MD5Abstract" Foreground="#666" FontSize="14"></TextBlock>
  78. </StackPanel>
  79. </StackPanel>
  80. </Border>
  81. </Grid>
  82. </UserControl>