12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <UserControl x:Class="PDF_Office.Views.Dialog.HomePageToolsDialogs.HomePagePrinter.HomePagePrinterPageSetDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:cus="clr-namespace:PDF_Office.CustomControl"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- d:DesignHeight="347"
- d:DesignWidth="371"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="48"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="64"></RowDefinition>
- </Grid.RowDefinitions>
- <TextBlock Grid.Row="0" Text="提取" FontSize="20" FontWeight="ExtraBlack" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="20,0,0,0" Height="28" Width="120"/>
- <Border Grid.Row="1" BorderBrush="Gray" BorderThickness="0,1,0,1" VerticalAlignment="Center" Height="235">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="1*"></RowDefinition>
- <RowDefinition Height="2*"></RowDefinition>
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0">
- <TextBlock Text="纸张" FontWeight="ExtraBlack" Width="56" Height="22" HorizontalAlignment="Left"/>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="大小: " VerticalAlignment="Center"></TextBlock>
- <ComboBox Width="281" Height="32" Margin="16,0,0,0"></ComboBox>
- </StackPanel>
- </StackPanel>
- <StackPanel Grid.Row="1" Margin="0,20,0,0">
- <TextBlock Text="页边距" FontWeight="ExtraBlack" Width="56" Height="22" HorizontalAlignment="Left"/>
- <StackPanel Orientation="Horizontal">
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="上: " VerticalAlignment="Center"></TextBlock>
- <cus:NumericUpDown Margin="30,0,0,0"></cus:NumericUpDown>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="71,0,0,0">
- <TextBlock Text="下: " VerticalAlignment="Center" ></TextBlock>
- <cus:NumericUpDown Margin="30,0,0,0"></cus:NumericUpDown>
- </StackPanel>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="左: " VerticalAlignment="Center"></TextBlock>
- <cus:NumericUpDown Margin="30,0,0,0"></cus:NumericUpDown>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="71,0,0,0">
- <TextBlock Text="右: " VerticalAlignment="Center"></TextBlock>
- <cus:NumericUpDown Margin="30,0,0,0"></cus:NumericUpDown>
- </StackPanel>
- </StackPanel>
- </StackPanel>
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|