12345678910111213141516171819202122232425262728293031323334353637 |
- <UserControl x:Class="PDF_Office.Views.Dialog.HomePageToolsDialogs.HomePagePrinter.HomePagePrinterModBookletContent"
- 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"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d"
- d:DesignHeight="180"
- d:DesignWidth="600">
- <Grid Height="160" VerticalAlignment="Top">
- <Grid.RowDefinitions>
- <RowDefinition Height="1*"></RowDefinition>
- <RowDefinition Height="1*"></RowDefinition>
- <RowDefinition Height="1*"></RowDefinition>
- <RowDefinition Height="1*"></RowDefinition>
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0" Orientation="Horizontal">
- <TextBlock Text="小册子子集:" VerticalAlignment="Center" Margin="0,0,47,0"></TextBlock>
- <ComboBox Height="32" Width="265"></ComboBox>
- </StackPanel>
- <StackPanel Grid.Row="1" Orientation="Horizontal">
- <TextBlock Text="页面,从:" VerticalAlignment="Center" Margin="0,0,58,0"></TextBlock>
- <TextBox Height="32" Width="50" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"></TextBox>
- <TextBlock Text="至" VerticalAlignment="Center" Margin="10,0,5,0"></TextBlock>
- <TextBox Height="32" Width="50" ></TextBox>
- </StackPanel>
- <StackPanel Grid.Row="2" Orientation="Horizontal">
- <TextBlock Text="装订:" VerticalAlignment="Center" Margin="0,0,84,0"></TextBlock>
- <ComboBox Height="32" Width="265"></ComboBox>
- </StackPanel>
- <StackPanel Grid.Row="3" Orientation="Horizontal">
- <CheckBox VerticalAlignment="Center"></CheckBox>
- <TextBlock Text="自动旋转每张纸中的页面" VerticalAlignment="Center" Margin="11,0,0,0"></TextBlock>
- </StackPanel>
- </Grid>
- </UserControl>
|