123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <UserControl x:Class="PDF_Office.Views.Dialog.HomePageToolsDialogs.HomePagePrinter.HomePagePrinterModPosterContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d"
- d:DesignHeight="180"
- d:DesignWidth="600"
- prism:ViewModelLocator.AutoWireViewModel="True">
- <Grid Height="160" VerticalAlignment="Top">
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" HorizontalAlignment="Left" Width="600">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="1*"></ColumnDefinition>
- <ColumnDefinition Width="1*"></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
- <RadioButton Name="Tile" Content="平铺"></RadioButton>
- <RadioButton Name="Split" Content="拆分"></RadioButton>
- </StackPanel>
- <Grid Grid.Column="1">
- <StackPanel Orientation="Horizontal" Visibility="Collapsed">
- <TextBlock Text="平铺百分比:" VerticalAlignment="Center"></TextBlock>
- <TextBox Height="32" Width="52"></TextBox>
- <TextBlock Text="%" VerticalAlignment="Center"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="-150,0,0,0" Visibility="Visible">
- <TextBlock Text="每张纸显示的页数:" VerticalAlignment="Center" ></TextBlock>
- <ComboBox Height="32" Width="113" Margin="0,0,16,0"></ComboBox>
- <TextBox Height="32" Width="52" Margin="0,0,16,0"></TextBox>
- <TextBlock Text="x" VerticalAlignment="Center" Margin="0,0,16,0"></TextBlock>
- <TextBox Height="32" Width="52"></TextBox>
- </StackPanel>
- </Grid>
- </Grid>
- <Grid Grid.Row="1">
- <StackPanel Orientation="Horizontal" >
- <TextBlock Text="重叠:" VerticalAlignment="Center"></TextBlock>
- <TextBox Height="32" Width="52"></TextBox>
- <TextBlock Text="mm" VerticalAlignment="Center"></TextBlock>
- </StackPanel>
- </Grid>
- <Grid Grid.Row="2">
- <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
- <CheckBox Margin="0,0,11,0"></CheckBox>
- <TextBlock Text="剪切标记"></TextBlock>
- </StackPanel>
- </Grid>
- <Grid Grid.Row="3" VerticalAlignment="Center">
- <StackPanel Orientation="Horizontal">
- <CheckBox Margin="0,0,11,0" VerticalAlignment="Center"></CheckBox>
- <TextBlock Text="标签" VerticalAlignment="Center" Margin="0,0,8,0"></TextBlock>
- <TextBox Height="32" Width="361"></TextBox>
- </StackPanel>
- </Grid>
- </Grid>
- </UserControl>
|