HomePagePrinterModPosterContent.xaml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <UserControl x:Class="PDF_Office.Views.Dialog.HomePageToolsDialogs.HomePagePrinter.HomePagePrinterModPosterContent"
  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. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. mc:Ignorable="d"
  8. d:DesignHeight="180"
  9. d:DesignWidth="600"
  10. prism:ViewModelLocator.AutoWireViewModel="True">
  11. <Grid Height="160" VerticalAlignment="Top">
  12. <Grid.RowDefinitions>
  13. <RowDefinition></RowDefinition>
  14. <RowDefinition></RowDefinition>
  15. <RowDefinition></RowDefinition>
  16. <RowDefinition></RowDefinition>
  17. </Grid.RowDefinitions>
  18. <Grid Grid.Row="0" HorizontalAlignment="Left" Width="600">
  19. <Grid.ColumnDefinitions>
  20. <ColumnDefinition Width="1*"></ColumnDefinition>
  21. <ColumnDefinition Width="1*"></ColumnDefinition>
  22. </Grid.ColumnDefinitions>
  23. <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
  24. <RadioButton Name="Tile" Content="平铺"></RadioButton>
  25. <RadioButton Name="Split" Content="拆分"></RadioButton>
  26. </StackPanel>
  27. <Grid Grid.Column="1">
  28. <StackPanel Orientation="Horizontal" Visibility="Collapsed">
  29. <TextBlock Text="平铺百分比:" VerticalAlignment="Center"></TextBlock>
  30. <TextBox Height="32" Width="52"></TextBox>
  31. <TextBlock Text="%" VerticalAlignment="Center"></TextBlock>
  32. </StackPanel>
  33. <StackPanel Orientation="Horizontal" Margin="-150,0,0,0" Visibility="Visible">
  34. <TextBlock Text="每张纸显示的页数:" VerticalAlignment="Center" ></TextBlock>
  35. <ComboBox Height="32" Width="113" Margin="0,0,16,0"></ComboBox>
  36. <TextBox Height="32" Width="52" Margin="0,0,16,0"></TextBox>
  37. <TextBlock Text="x" VerticalAlignment="Center" Margin="0,0,16,0"></TextBlock>
  38. <TextBox Height="32" Width="52"></TextBox>
  39. </StackPanel>
  40. </Grid>
  41. </Grid>
  42. <Grid Grid.Row="1">
  43. <StackPanel Orientation="Horizontal" >
  44. <TextBlock Text="重叠:" VerticalAlignment="Center"></TextBlock>
  45. <TextBox Height="32" Width="52"></TextBox>
  46. <TextBlock Text="mm" VerticalAlignment="Center"></TextBlock>
  47. </StackPanel>
  48. </Grid>
  49. <Grid Grid.Row="2">
  50. <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
  51. <CheckBox Margin="0,0,11,0"></CheckBox>
  52. <TextBlock Text="剪切标记"></TextBlock>
  53. </StackPanel>
  54. </Grid>
  55. <Grid Grid.Row="3" VerticalAlignment="Center">
  56. <StackPanel Orientation="Horizontal">
  57. <CheckBox Margin="0,0,11,0" VerticalAlignment="Center"></CheckBox>
  58. <TextBlock Text="标签" VerticalAlignment="Center" Margin="0,0,8,0"></TextBlock>
  59. <TextBox Height="32" Width="361"></TextBox>
  60. </StackPanel>
  61. </Grid>
  62. </Grid>
  63. </UserControl>