PageInsertControl.xaml 1.2 KB

12345678910111213141516171819202122232425262728
  1. <UserControl x:Class="ComPDFKitDemo.PageEditor.PageInsertControl"
  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:ComPDFKitDemo.PageEditor"
  7. mc:Ignorable="d"
  8. d:DesignHeight="350" d:DesignWidth="400" Background="Transparent">
  9. <UserControl.Resources>
  10. </UserControl.Resources>
  11. <Border CornerRadius="8" Background="White">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="auto"/>
  15. <RowDefinition Height="15*"/>
  16. <RowDefinition Height="auto"/>
  17. </Grid.RowDefinitions>
  18. <StackPanel>
  19. <Button HorizontalAlignment="Center" Content="插入" Background="Transparent" BorderThickness="0" FontSize="18"/>
  20. </StackPanel>
  21. <Button HorizontalAlignment="Right" FontFamily="Segoe MDL2 Assets" Content="&#xE10A;" FontSize="18" Background="Transparent" />
  22. </Grid>
  23. </Border>
  24. </UserControl>