12345678910111213141516171819202122232425262728293031 |
- <UserControl x:Class="PDF_Master.Views.Dialog.HomePageToolsDialogs.HomePageBatchProcessing.HomePageConverter.HomePageConverterCSV"
- 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">
- <Grid>
-
- <StackPanel Width="245" >
- <TextBlock
- Width="60"
- Height="20"
- HorizontalAlignment="Left"
- Text="CSV设置:" />
- <RadioButton
- IsChecked="True"
- Name="ForEachPageRadioBtn"
- Command="{Binding RadioButtonCommand}"
- CommandParameter="{Binding ElementName=ForEachPageRadioBtn, Path=Name}"
- Margin="0,8,0,0">
- <TextBlock Text="为每个表格创建工作表" />
- </RadioButton>
- <RadioButton
- Name="OnlyTableRadioBtn"
- Margin="0,6,0,0"
- Command="{Binding RadioButtonCommand}"
- CommandParameter="{Binding ElementName=OnlyTableRadioBtn, Path=Name}">
- <TextBlock Text="为文档创建单个工作表" />
- </RadioButton>
- </StackPanel>
- </Grid>
- </UserControl>
|