1234567891011121314151617181920212223242526272829303132 |
- <UserControl x:Class="Compdfkit_Tools.PDFControl.CPDFInfoControl"
- 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:cpdftools="clr-namespace:Compdfkit_Tools.PDFControl"
- mc:Ignorable="d"
- Width="422" Height="680" Background="#ffffff">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <TextBlock Height="20" FontSize="14" LineHeight="16" Margin="12,6,0,0" HorizontalAlignment="Left">Password</TextBlock>
- <Button x:Name="CloseInfoButton" Grid.Column="1" Width="16" Height="16" HorizontalAlignment="Right" Margin="0,8,8,0" BorderThickness="0" Click="CloseInfoButton_Click">
- <Button.Content>
- <Path Fill="Black">
- <Path.Data>
- 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
- </Path.Data>
- </Path>
- </Button.Content>
- </Button>
- </Grid>
- <StackPanel Orientation="Vertical" Grid.Row="1" Margin="20,0,20,0">
- <cpdftools:CPDFAbstractInfoControl x:Name="CPDFAbstractInfoControl"></cpdftools:CPDFAbstractInfoControl>
- <cpdftools:CPDFCreateInfoControl x:Name="CPDFCreateInfoControl" ></cpdftools:CPDFCreateInfoControl>
- <cpdftools:CPDFSecurityInfoControl x:Name="CPDFSecurityInfoControl"></cpdftools:CPDFSecurityInfoControl>
- </StackPanel>
- </Grid>
- </UserControl>
|