1234567891011121314151617181920212223242526272829303132333435 |
- <UserControl x:Class="PDF_Office.Views.PropertyPanel.Scan.ScanPropertyPanel"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.Views.PropertyPanel.Scan" xmlns:customcontrol="clr-namespace:PDF_Office.CustomControl"
- mc:Ignorable="d" >
- <Grid>
- <StackPanel>
- <TextBlock Text="识别文本"/>
- <customcontrol:PathRadioButton
- MouseOverBackground="#EDEEF0" MouseDownBackground="#CED0D4" MouseDownBackgroundOpacity="0.6"
- HorizontalContentAlignment="Center" VerticalContentAlignment="Center">
- <customcontrol:PathRadioButton.Content >
- <TextBlock Text="页面识别"/>
- </customcontrol:PathRadioButton.Content>
- </customcontrol:PathRadioButton>
- <customcontrol:PathRadioButton
- MouseOverBackground="#EDEEF0" MouseDownBackground="#CED0D4" MouseDownBackgroundOpacity="0.6"
- HorizontalContentAlignment="Center" VerticalContentAlignment="Center">
- <customcontrol:PathRadioButton.Content >
- <TextBlock Text="区域识别"/>
- </customcontrol:PathRadioButton.Content>
- </customcontrol:PathRadioButton>
- <ComboBox SelectedIndex="0">
- <TextBlock Text="English"/>
- <TextBlock Text="Chinese Simplified"/>
- <TextBlock Text="Chinese Traditional"/>
- <TextBlock Text="French"/>
- </ComboBox>
- <customcontrol:WritableComboBox SelectedIndex="0" MaxPageRange="{Binding PageCount}" Text="{Binding SetPageRange,Mode=TwoWay}"/>
- <Button Content="OCR"/>
- </StackPanel>
- </Grid>
- </UserControl>
|