PageControl.xaml 1.9 KB

123456789101112131415161718192021222324252627282930313233
  1. <UserControl x:Class="PDF_Master.CustomControl.PageControl"
  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:PDF_Master.CustomControl"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <Grid>
  10. <Border Height="64" Width="293" HorizontalAlignment="Center" VerticalAlignment="Bottom" Panel.ZIndex="1" Margin="9" Background="#323232" CornerRadius="4">
  11. <Grid>
  12. <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
  13. <StackPanel Orientation="Horizontal">
  14. <TextBlock Text="-" FontSize="20" Foreground="White" Margin="20,0,20,0"></TextBlock>
  15. <TextBlock Text="+" FontSize="20" Foreground="White" Margin="0,0,39,0"></TextBlock>
  16. </StackPanel>
  17. <StackPanel Orientation="Horizontal">
  18. <TextBlock Text="1" FontSize="20" Foreground="White" Margin="0,0,24,0"></TextBlock>
  19. <TextBlock Text="/" FontSize="20" Foreground="White" Margin="0,0,24,0"></TextBlock>
  20. <TextBlock Text="20" FontSize="20" Foreground="White" Margin="0,0,24,0"></TextBlock>
  21. </StackPanel>
  22. <StackPanel Orientation="Horizontal">
  23. <TextBlock Text="↑" FontSize="20" Foreground="White" Margin="20,0,20,0"></TextBlock>
  24. <TextBlock Text="↓" FontSize="20" Foreground="White"></TextBlock>
  25. </StackPanel>
  26. </StackPanel>
  27. </Grid>
  28. </Border>
  29. </Grid>
  30. </UserControl>