12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <UserControl x:Class="PDF_Office.Views.Dialog.HomePageToolsDialogs.HomePagePrinter.HomePagePrinterDocumentContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True" >
- <Grid Height="468" Width="269">
- <Border Height="430" Width="269" Background="LightGray" HorizontalAlignment="Center" VerticalAlignment="Top">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="37"></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Bottom" Orientation="Horizontal">
- <TextBlock Text="大小:"></TextBlock>
- <TextBlock Text="{Binding PaperWidth}"></TextBlock>
- <TextBlock Text="*"></TextBlock>
- <TextBlock Text="{Binding PaperHeight}"></TextBlock>
- <TextBlock Text="mm"></TextBlock>
- </StackPanel>
- </Grid>
- <Border Grid.Row="1" Width="{Binding ViewBoxWidth}" Height="{Binding ViewBoxHeight}" BorderThickness="1" BorderBrush="Black" CornerRadius="2">
- <Grid Background="White">
- <Viewbox>
- <Image Name="Image" Source="{Binding BitmapSource}"></Image>
- </Viewbox>
- </Grid>
- </Border>
- </Grid>
- </Border>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Bottom" >
- <Button Name="PrePageBtn" Width="20" Height="20" HorizontalAlignment="Left" FontSize="16" Background="WhiteSmoke" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" >
- <TextBlock Text="<" VerticalAlignment="Center"></TextBlock>
- </Button>
- <TextBox x:Name="CurrentPageIndexTextBox" Width="30" Height="25" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Margin="10,0,5,0" ></TextBox>
- <TextBlock Text="of" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="0"></TextBlock>
- <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" Margin="5" Text="{Binding PrintedPageCount}"></TextBlock>
- <Button Name="NextPageBtn" Width="20" Height="20" HorizontalAlignment="Left" FontSize="16" Background="WhiteSmoke" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" >
- <TextBlock Text=">" VerticalAlignment="Center"></TextBlock>
- </Button>
- </StackPanel>
- </Grid>
- </UserControl>
|