HomePageConverterWord.xaml 1.3 KB

12345678910111213141516171819
  1. <UserControl x:Class="PDF_Master.Views.Dialog.HomePageToolsDialogs.HomePageBatchProcessing.HomePageConverter.HomePageConverterWord"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:prism="http://prismlibrary.com/"
  5. prism:ViewModelLocator.AutoWireViewModel="True">
  6. <Grid>
  7. <StackPanel Orientation="Vertical" Margin="0,16,0,0" HorizontalAlignment="Left" Width="245">
  8. <TextBlock Text="版面设置:" Width="60" Height="20" HorizontalAlignment="Left"/>
  9. <StackPanel Orientation="Horizontal" Margin="0,7,0,0">
  10. <RadioButton Name="FlowingTextRadioBtn" Command="{Binding RadioButtonCommand}" CommandParameter="{Binding ElementName=FlowingTextRadioBtn,Path=Name}" IsEnabled="False">
  11. <TextBlock Text="保留流排文本"/>
  12. </RadioButton>
  13. <RadioButton Margin="16,0,0,0" Name="PageLayoutRadioBtn" Command="{Binding RadioButtonCommand}" CommandParameter="{Binding ElementName=PageLayoutRadioBtn,Path=Name}" IsChecked="True" >
  14. <TextBlock Text="保留页面布局"/>
  15. </RadioButton>
  16. </StackPanel>
  17. </StackPanel>
  18. </Grid>
  19. </UserControl>