PageTurningPreview.xaml 2.2 KB

1234567891011121314151617181920212223242526272829
  1. <UserControl x:Class="PDF_Office.CustomControl.PageTurningPreview"
  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_Office.CustomControl"
  7. mc:Ignorable="d"
  8. Height="280" Width="200">
  9. <Grid Width="200" Height="280">
  10. <StackPanel Orientation="Vertical" Height="280">
  11. <Border Margin="0,16,0,0" HorizontalAlignment="Center" VerticalAlignment="Top" Background="LightGray" Height="218" Width="176">
  12. <Viewbox>
  13. <Image Name="Image" Height="218" Width="176"></Image>
  14. </Viewbox>
  15. </Border>
  16. <StackPanel Orientation="Horizontal" Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,16,0,0">
  17. <Button Name="PrePage" Width="24" Click="PrePage_Click" Height="24" HorizontalAlignment="Left" FontSize="16" Background="WhiteSmoke" HorizontalContentAlignment="Center" VerticalContentAlignment="Center">
  18. <TextBlock Text="&lt;" VerticalAlignment="Center" ></TextBlock>
  19. </Button>
  20. <TextBox x:Name="CurrentPage" Width="48" Height="24" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Margin="11,0,2,0" Text="1" InputMethod.IsInputMethodEnabled="False" PreviewTextInput="CountTextBox_PreviewTextInput" KeyDown="CurrentPage_KeyDown"></TextBox>
  21. <TextBlock Text="of" Margin="0,0,2,0" HorizontalAlignment="Left" VerticalAlignment="Center"></TextBlock>
  22. <TextBlock x:Name="PageIndex" VerticalAlignment="Center" Block.TextAlignment="Center" Width="23"/>
  23. <Button Name="NextPage" Click="NextPage_Click" Width="24" Height="24" HorizontalAlignment="Left" FontSize="16" Background="WhiteSmoke" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Margin="17,0,0,0">
  24. <TextBlock Text=">" VerticalAlignment="Center"></TextBlock>
  25. </Button>
  26. </StackPanel>
  27. </StackPanel>
  28. </Grid>
  29. </UserControl>