1234567891011121314151617181920212223242526272829303132333435363738 |
- <UserControl x:Class="PDF_Office.Views.Dialog.HomePageToolsDialogs.HomePagePrinter.HomePagePrinterModMultipleContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- xmlns:cus="clr-namespace:PDF_Office.CustomControl"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:homepageprinter="clr-namespace:PDF_Office.ViewModels.Dialog.HomePageToolsDialogs.HomePagePrinter"
- d:DataContext="{d:DesignInstance Type=homepageprinter:HomePagePrinterModMultipleContentViewModel}"
- mc:Ignorable="d"
- d:DesignHeight="180"
- d:DesignWidth="600">
- <Grid Height="120" VerticalAlignment="Top">
- <Grid.RowDefinitions>
- <RowDefinition Height="1*"></RowDefinition>
- <RowDefinition Height="1*"></RowDefinition>
- <RowDefinition Height="1*"></RowDefinition>
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0" Orientation="Horizontal">
- <TextBlock Text="每张纸显示的页数:" VerticalAlignment="Center" Margin="0,0,5,0"></TextBlock>
- <ComboBox Height="32" Width="113" ItemsSource="{Binding PageMatrixList}" SelectedIndex="{Binding PageMatrixIndex}"></ComboBox>
- <StackPanel Grid.Row="0" Orientation="Horizontal" IsEnabled="{Binding EnableCustomiseMatrix, Mode=OneWay}">
- <TextBox Height="32" Width="53" Margin="16,0,11,0" Text="{Binding HorizontalPageNumber, Mode=TwoWay}"></TextBox>
- <TextBlock Text="X" VerticalAlignment="Center"></TextBlock>
- <TextBox Height="32" Width="53" Margin="11,0,0,0" Text="{Binding VerticalPageNumber, Mode=TwoWay}"></TextBox>
- </StackPanel>
- </StackPanel>
- <StackPanel Grid.Row="1" Orientation="Horizontal">
- <TextBlock Text="页面顺序:" VerticalAlignment="Center" Margin="0,0,61,0"></TextBlock>
- <ComboBox Height="32" Width="265" ItemsSource="{Binding PageOrderList}" SelectedIndex="{Binding PageOrderIndex}"></ComboBox>
- </StackPanel>
- <StackPanel Grid.Row="2" Orientation="Horizontal">
- <CheckBox VerticalAlignment="Center"></CheckBox>
- <TextBlock VerticalAlignment="Center" Margin="11" Text="自动旋转每张纸中的页面"></TextBlock>
- </StackPanel>
- </Grid>
- </UserControl>
|