123456789101112131415161718192021 |
- <UserControl x:Class="PDF_Office.Views.EditTools.Redaction.RedactionDocumentContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/" xmlns:redaction="clr-namespace:PDF_Office.ViewModels.EditTools.Redaction" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- prism:ViewModelLocator.AutoWireViewModel="True">
- <Grid Height="720" Width="1280">
- <Border CornerRadius="4" Background="#323232" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="41,0,0,25" Height="53" Width="93" Panel.ZIndex="1" >
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
- <TextBlock Text="{Binding CurrentPageIndex, Mode=TwoWay}" Foreground="White" FontSize="20"></TextBlock>
- <TextBlock Text="/" Foreground="White" FontSize="20"></TextBlock>
- <TextBlock Text="{Binding PageRangeNumber, Mode=TwoWay}" FontSize="20" Foreground="White"></TextBlock>
- </StackPanel>
- </Border>
- <Grid Height="676" Width="1220" VerticalAlignment="Bottom" HorizontalAlignment="Right">
- <ContentControl
- x:Name="PDFViewerContent"
- HorizontalAlignment="Stretch"
- prism:RegionManager.RegionName="{Binding ViewerRegionName}" />
- </Grid>
- </Grid>
- </UserControl>
|