CPDFArrowUI.xaml 997 B

1234567891011121314151617181920
  1. <UserControl x:Class="compdfkit_tools.PDFControlUI.CPDFArrowUI"
  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. mc:Ignorable="d"
  7. d:DesignHeight="800" d:DesignWidth="300">
  8. <Grid>
  9. <Grid.RowDefinitions>
  10. <RowDefinition Height="135"></RowDefinition>
  11. <RowDefinition Height="80"></RowDefinition>
  12. <RowDefinition Height="80"></RowDefinition>
  13. <RowDefinition Height="80"></RowDefinition>
  14. <RowDefinition Height="80"></RowDefinition>
  15. <RowDefinition Height="80"></RowDefinition>
  16. <RowDefinition Height="200"></RowDefinition>
  17. <RowDefinition></RowDefinition>
  18. </Grid.RowDefinitions>
  19. </Grid>
  20. </UserControl>