PrinterDialog.xaml 1.4 KB

123456789101112131415161718192021222324252627
  1. <UserControl x:Class="PDF_Office.Views.Dialog.PrinterDialog"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:prism="http://prismlibrary.com/"
  7. prism:ViewModelLocator.AutoWireViewModel="True"
  8. d:DesignHeight="650"
  9. d:DesignWidth="893"
  10. mc:Ignorable="d">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="50"></RowDefinition>
  14. <RowDefinition Height="*"></RowDefinition>
  15. <RowDefinition Height="63"></RowDefinition>
  16. </Grid.RowDefinitions>
  17. <TextBlock Grid.Row="0" Text="打印" FontSize="20" FontWeight="ExtraBlack" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="20,0,0,0" Height="28" Width="120"/>
  18. <Border Grid.Row="1" BorderBrush="Gray" BorderThickness="0,1,0,1" VerticalAlignment="Center" Height="537">
  19. <Grid>
  20. <Grid.ColumnDefinitions>
  21. <ColumnDefinition Width="2*"/>
  22. <ColumnDefinition Width="4*"/>
  23. </Grid.ColumnDefinitions>
  24. </Grid>
  25. </Border>
  26. </Grid>
  27. </UserControl>