HomePagePrinterModBookletContent.xaml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <UserControl x:Class="PDF_Office.Views.Dialog.HomePageToolsDialogs.HomePagePrinter.HomePagePrinterModBookletContent"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:prism="http://prismlibrary.com/"
  5. prism:ViewModelLocator.AutoWireViewModel="True"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d"
  9. d:DesignHeight="180"
  10. d:DesignWidth="600">
  11. <Grid Height="160" VerticalAlignment="Top">
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="1*"></RowDefinition>
  14. <RowDefinition Height="1*"></RowDefinition>
  15. <RowDefinition Height="1*"></RowDefinition>
  16. <RowDefinition Height="1*"></RowDefinition>
  17. </Grid.RowDefinitions>
  18. <StackPanel Grid.Row="0" Orientation="Horizontal">
  19. <TextBlock Text="小册子子集:" VerticalAlignment="Center" Margin="0,0,47,0"></TextBlock>
  20. <ComboBox Height="32" Width="265"></ComboBox>
  21. </StackPanel>
  22. <StackPanel Grid.Row="1" Orientation="Horizontal">
  23. <TextBlock Text="页面,从:" VerticalAlignment="Center" Margin="0,0,58,0"></TextBlock>
  24. <TextBox Height="32" Width="50" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"></TextBox>
  25. <TextBlock Text="至" VerticalAlignment="Center" Margin="10,0,5,0"></TextBlock>
  26. <TextBox Height="32" Width="50" ></TextBox>
  27. </StackPanel>
  28. <StackPanel Grid.Row="2" Orientation="Horizontal">
  29. <TextBlock Text="装订:" VerticalAlignment="Center" Margin="0,0,84,0"></TextBlock>
  30. <ComboBox Height="32" Width="265"></ComboBox>
  31. </StackPanel>
  32. <StackPanel Grid.Row="3" Orientation="Horizontal">
  33. <CheckBox VerticalAlignment="Center"></CheckBox>
  34. <TextBlock Text="自动旋转每张纸中的页面" VerticalAlignment="Center" Margin="11,0,0,0"></TextBlock>
  35. </StackPanel>
  36. </Grid>
  37. </UserControl>