SignerInfoControl.xaml 1.3 KB

123456789101112131415161718192021
  1. <UserControl x:Class="Compdfkit_Tools.DigitalSignature.VerifyDigitalSignatureControl.SignerInfoControl"
  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.DigitalSignature.VerifyDigitalSignatureControl"
  7. mc:Ignorable="d"
  8. d:DesignHeight="147" d:DesignWidth="504">
  9. <Grid>
  10. <Grid Background="#ffffff" Margin="20,0,0,0" Panel.ZIndex="1" Height="20" HorizontalAlignment="Left" VerticalAlignment="Top">
  11. <TextBlock Text="Signer information" FontWeight="Bold" FontSize="14" FontFamily="Segoe UI"></TextBlock>
  12. </Grid>
  13. <Border Margin="10" BorderBrush="#33000000" BorderThickness="1">
  14. <StackPanel>
  15. <TextBlock Margin="10" Text="{Binding SignerInfoString}" Height="52" Width="448"></TextBlock>
  16. <Button Width="158" Height="32" Content="View signer certificates" Margin="10,0,10,10" HorizontalAlignment="Left"></Button>
  17. </StackPanel>
  18. </Border>
  19. </Grid>
  20. </UserControl>