HomePageConverterCSV.xaml 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. <UserControl x:Class="PDF_Master.Views.Dialog.HomePageToolsDialogs.HomePageBatchProcessing.HomePageConverter.HomePageConverterCSV"
  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 Width="245" >
  8. <TextBlock
  9. Width="60"
  10. Height="20"
  11. HorizontalAlignment="Left"
  12. Text="CSV设置:" />
  13. <RadioButton
  14. IsChecked="True"
  15. Name="ForEachPageRadioBtn"
  16. Command="{Binding RadioButtonCommand}"
  17. CommandParameter="{Binding ElementName=ForEachPageRadioBtn, Path=Name}"
  18. Margin="0,8,0,0">
  19. <TextBlock Text="为每个表格创建工作表" />
  20. </RadioButton>
  21. <RadioButton
  22. Name="OnlyTableRadioBtn"
  23. Margin="0,6,0,0"
  24. Command="{Binding RadioButtonCommand}"
  25. CommandParameter="{Binding ElementName=OnlyTableRadioBtn, Path=Name}">
  26. <TextBlock Text="为文档创建单个工作表" />
  27. </RadioButton>
  28. </StackPanel>
  29. </Grid>
  30. </UserControl>