HomePagePrinterModSizeContent.xaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <UserControl x:Class="PDF_Office.Views.Dialog.HomePageToolsDialogs.HomePagePrinter.HomePagePrinterModSizeContent"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:cus="clr-namespace:PDF_Office.CustomControl"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:prism="http://prismlibrary.com/"
  6. prism:ViewModelLocator.AutoWireViewModel="True"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. mc:Ignorable="d"
  10. d:DesignHeight="180"
  11. d:DesignWidth="300">
  12. <Grid Height="120" VerticalAlignment="Top">
  13. <Grid.RowDefinitions>
  14. <RowDefinition></RowDefinition>
  15. <RowDefinition></RowDefinition>
  16. <RowDefinition></RowDefinition>
  17. </Grid.RowDefinitions>
  18. <Grid Grid.Row="0">
  19. <RadioButton VerticalAlignment="Center">
  20. <TextBlock Text="自动适应"></TextBlock>
  21. </RadioButton>
  22. </Grid>
  23. <Grid Grid.Row="1">
  24. <RadioButton VerticalAlignment="Center">
  25. <TextBlock Text="实际大小"></TextBlock>
  26. </RadioButton>
  27. </Grid>
  28. <Grid Grid.Row="2">
  29. <RadioButton VerticalAlignment="Center">
  30. <TextBlock Text="自定义显示比例"></TextBlock>
  31. </RadioButton>
  32. <cus:NumericUpDown Width="73" Height="32" Margin="15,0,0,2"></cus:NumericUpDown>
  33. </Grid>
  34. </Grid>
  35. </UserControl>