CPDFInfoControl.xaml 1.9 KB

1234567891011121314151617181920212223242526272829303132
  1. <UserControl x:Class="Compdfkit_Tools.PDFControl.CPDFInfoControl"
  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:cpdftools="clr-namespace:Compdfkit_Tools.PDFControl"
  7. mc:Ignorable="d"
  8. Width="422" Height="680" Background="#ffffff">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="auto"></RowDefinition>
  12. <RowDefinition></RowDefinition>
  13. </Grid.RowDefinitions>
  14. <Grid Grid.Row="0">
  15. <TextBlock Height="20" FontSize="14" LineHeight="16" Margin="12,6,0,0" HorizontalAlignment="Left">Password</TextBlock>
  16. <Button x:Name="CloseInfoButton" Grid.Column="1" Width="16" Height="16" HorizontalAlignment="Right" Margin="0,8,8,0" BorderThickness="0" Click="CloseInfoButton_Click">
  17. <Button.Content>
  18. <Path Fill="Black">
  19. <Path.Data>
  20. M6.69495 6L11.5 1.19495L10.805 0.5L6 5.30505L1.19495 0.5L0.5 1.19495L5.30505 6L0.5 10.805L1.19495 11.5L6 6.69495L10.805 11.5L11.5 10.805L6.69495 6Z
  21. </Path.Data>
  22. </Path>
  23. </Button.Content>
  24. </Button>
  25. </Grid>
  26. <StackPanel Orientation="Vertical" Grid.Row="1" Margin="20,0,20,0">
  27. <cpdftools:CPDFAbstractInfoControl x:Name="CPDFAbstractInfoControl"></cpdftools:CPDFAbstractInfoControl>
  28. <cpdftools:CPDFCreateInfoControl x:Name="CPDFCreateInfoControl" ></cpdftools:CPDFCreateInfoControl>
  29. <cpdftools:CPDFSecurityInfoControl x:Name="CPDFSecurityInfoControl"></cpdftools:CPDFSecurityInfoControl>
  30. </StackPanel>
  31. </Grid>
  32. </UserControl>