123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <UserControl x:Class="PDF_Master.Views.Dialog.ConverterDialogs.ConverterExcelDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:cus="clr-namespace:PDF_Master.CustomControl"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
- xmlns:local="clr-namespace:PDF_Master.Views.Dialog.PageEditDialogs"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:pageeditdialogs="clr-namespace:PDF_Master.ViewModels.Dialog.PageEditDialogs"
- xmlns:prism="http://prismlibrary.com/"
- Width="586"
- Height="498"
- d:DataContext="{d:DesignInstance Type=pageeditdialogs:ExtractDialogViewModel}"
- d:DesignHeight="498"
- d:DesignWidth="586"
- prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d">
- <cus:DialogContent Header="PDF转Excel">
- <cus:DialogContent.Content>
- <Grid Grid.Row="1">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="212"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Grid Grid.Column="0">
- <cus:PageTurningPreview x:Name="ConverterPreview" Loaded="ConverterPreview_Loaded" VerticalAlignment="Top"></cus:PageTurningPreview>
- </Grid>
- <Grid Grid.Column="1">
- <StackPanel Orientation="Vertical" Margin="16,2,0,0">
- <StackPanel Orientation="Vertical">
- <TextBlock Text="ExcelExcel Workbook Settings" Height="20" Style="{StaticResource PropertyHeaderLv2}"/>
- <StackPanel Orientation="Vertical" Margin="0,10,0,0">
- <RadioButton Name="AnyContentRadioBtn" Command="{Binding RadioButtonCommand}" CommandParameter="{Binding ElementName=AnyContentRadioBtn,Path=Name}" IsChecked="True"
- Style="{StaticResource RadioButtonStyleText}">
- <TextBlock Text="All contents"/>
- </RadioButton>
- <ComboBox Margin="0,8,0,0" Width="326" Height="32" HorizontalAlignment="Left" IsEnabled="{Binding ElementName=AnyContentRadioBtn,Path=IsChecked}" SelectedIndex="{Binding AnyContentSelectIndex}" >
- <ComboBoxItem Content="为每个页面创建工作表 "/>
- <ComboBoxItem Content="为文档创建单个工作表"/>
- </ComboBox>
- <RadioButton Margin="0,8,0,0" Name="OnlyTableRadioBtn" Command="{Binding RadioButtonCommand}" CommandParameter="{Binding ElementName=OnlyTableRadioBtn,Path=Name}" Padding="8,0,0,0"
- Style="{StaticResource RadioButtonStyleText}">
- <TextBlock Text="Only Tables"/>
- </RadioButton>
- <ComboBox Name="OnlyTableComboBox" Margin="0,8,0,0" Width="326" Height="32" HorizontalAlignment="Left" IsEnabled="{Binding ElementName=OnlyTableRadioBtn,Path=IsChecked}" SelectedIndex="{Binding OnlyTableSelectIndex}">
- <ComboBoxItem Content="支持一个表格提取到单独的工作表"/>
- <ComboBoxItem Content="支持按页面提取表格到单独的工作表"/>
- <ComboBoxItem Content="支持将所有表格提取到一个工作表"/>
- </ComboBox>
- <RadioButton Margin="0,8,0,0" Name="OnlyTextRadioBtn" Command="{Binding RadioButtonCommand}" CommandParameter="{Binding ElementName=OnlyTextRadioBtn,Path=Name}" Padding="8,0,0,0"
- Style="{StaticResource RadioButtonStyleText}">
- <TextBlock Text="Only Text"></TextBlock>
- </RadioButton>
- </StackPanel>
- </StackPanel>
- <StackPanel Orientation="Vertical" Margin="0,18,0,0">
- <StackPanel Orientation="Vertical" Visibility="Collapsed">
- <TextBlock Text="Text Recognition Settings:" HorizontalAlignment="Left" Height="20" Style="{StaticResource PropertyHeaderLv2}"/>
- <CheckBox Name="OCRCheckBox" Margin="0,10,0,0" IsChecked="{Binding OCRCheckBoxIsCheckBox}" Padding="8,0,0,0" >
- <TextBlock Text="Recognize text if needed"/>
- </CheckBox>
- <ComboBox IsEnabled="{Binding ElementName=OCRCheckBox,Path=IsChecked}" Margin="0,8,0,0" Width="326" Height="32" HorizontalAlignment="Left" SelectedIndex="{Binding LanguageSelectedIndex}">
- <ComboBoxItem Content="Chinese Simplified"/>
- <ComboBoxItem Content="Chinese Traditional"/>
- <ComboBoxItem Content="English"/>
- <ComboBoxItem Content="Japan"/>
- <ComboBoxItem Content="Korean"/>
- </ComboBox>
- </StackPanel>
- <StackPanel Orientation="Vertical" Margin="0,18,0,0">
- <TextBlock Text="Page Range" Height="20" HorizontalAlignment="Left" Style="{StaticResource PropertyHeaderLv2}"/>
- <cus:WritableComboBox x:Name="PageRangeComboBox" Margin="0,10,0,0" Width="326" Height="32" HorizontalAlignment="Left" IsCurrentPage="True" Text="{Binding PageRangeText, Mode=TwoWay}" SelectedIndex="{Binding PageRangeSelectIndex, Mode=TwoWay}" MaxPageRange="{Binding MaxPageRange}" Loaded="PageRangeComboBox_Loaded">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="SelectionChanged">
- <i:InvokeCommandAction Command="{Binding CmbPageSelectionChanged}" CommandParameter="{Binding ElementName=ConverterPreview}" />
- </i:EventTrigger>
- <i:EventTrigger EventName="TextChanged">
- <i:InvokeCommandAction Command="{Binding CmbPageTextChanged}" CommandParameter="{Binding ElementName=ConverterPreview}" />
- </i:EventTrigger>
- <i:KeyTrigger FiredOn="KeyDown" Key="Return">
- <i:InvokeCommandAction Command="{Binding SetCustomPageRangeCommand}" ></i:InvokeCommandAction>
- </i:KeyTrigger>
- </i:Interaction.Triggers>
- </cus:WritableComboBox>
- </StackPanel>
- </StackPanel>
- </StackPanel>
- </Grid>
- </Grid>
- </cus:DialogContent.Content>
- <cus:DialogContent.BottmBar>
- <Grid>
- <!--<Button Background="WhiteSmoke" Width="98" Height="32" Margin="0,0,400,0" Command="{Binding BatchConverterCommand}" Style="{StaticResource btn.sec}">
- <Border>
- <TextBlock Text="批量处理" ></TextBlock>
- </Border>
- </Button>-->
- <Button
- Width="98"
- Height="32"
- Margin="0,0,16,0"
- HorizontalAlignment="Right"
- Content="取消"
- Command="{Binding CancelCommand}" Style="{StaticResource btn.sec}"/>
- <Button
- Width="98"
- Height="32"
- Margin="124,0"
- HorizontalAlignment="Right"
- Content="转换"
- Command = "{Binding ConverterCommnad}" Style="{StaticResource Btn.cta}"/>
- </Grid>
- </cus:DialogContent.BottmBar>
- </cus:DialogContent>
- </UserControl>
|