ConverterCSVDialog.xaml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <UserControl
  2. x:Class="PDF_Office.Views.Dialog.ConverterDialogs.ConverterCSVDialog"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:converterdialogs="clr-namespace:PDF_Office.ViewModels.Dialog.ConverterDialogs"
  6. xmlns:cus="clr-namespace:PDF_Office.CustomControl"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
  9. xmlns:local="clr-namespace:PDF_Office.Views.Dialog.PageEditDialogs"
  10. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  11. xmlns:pageeditdialogs="clr-namespace:PDF_Office.ViewModels.Dialog.PageEditDialogs"
  12. xmlns:prism="http://prismlibrary.com/"
  13. Width="468"
  14. Height="454"
  15. d:DataContext="{d:DesignInstance Type=converterdialogs:ConverterCSVDialogViewModel}"
  16. d:DesignHeight="454"
  17. d:DesignWidth="468"
  18. prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
  19. prism:ViewModelLocator.AutoWireViewModel="True"
  20. mc:Ignorable="d">
  21. <cus:DialogContent Header="PDF转CSV">
  22. <cus:DialogContent.Content>
  23. <Grid Grid.Row="1" >
  24. <Grid.ColumnDefinitions>
  25. <ColumnDefinition Width="212"/>
  26. <ColumnDefinition Width="*" />
  27. </Grid.ColumnDefinitions>
  28. <Grid Grid.Column="0" VerticalAlignment="Top">
  29. <cus:PageTurningPreview x:Name="ConverterPreview" Loaded="ConverterPreview_Loaded" />
  30. </Grid>
  31. <Grid Grid.Column="1">
  32. <StackPanel Margin="16,2,0,0">
  33. <TextBlock
  34. Height="20"
  35. Style="{StaticResource PropertyHeaderLv2}"
  36. HorizontalAlignment="Left"
  37. Text="CSV Workbook Settings" />
  38. <StackPanel Margin="0,10,0,0">
  39. <RadioButton
  40. IsChecked="True"
  41. Name="ForEachPageRadioBtn"
  42. FontFamily="Segoe UI"
  43. Padding="9,0,0,0"
  44. Command="{Binding RadioButtonCommand}"
  45. CommandParameter="{Binding ElementName=ForEachPageRadioBtn, Path=Name}">
  46. <TextBlock Text="Retain Flowing Text" />
  47. </RadioButton>
  48. <RadioButton
  49. Name="OnlyTableRadioBtn"
  50. Margin="0,8,0,0"
  51. Padding="9,0,0,0"
  52. FontFamily="Segoe UI"
  53. Command="{Binding RadioButtonCommand}"
  54. CommandParameter="{Binding ElementName=OnlyTableRadioBtn, Path=Name}">
  55. <TextBlock Text="Retain Page Layout" />
  56. </RadioButton>
  57. </StackPanel>
  58. <StackPanel Margin="0,19,0,0" Orientation="Vertical">
  59. <TextBlock
  60. Height="20"
  61. HorizontalAlignment="Left"
  62. Style="{StaticResource PropertyHeaderLv2}"
  63. Text="Page Range" />
  64. <cus:WritableComboBox
  65. x:Name="PageRangeComboBox"
  66. Width="228"
  67. Height="32"
  68. Margin="0,10,0,0"
  69. HorizontalAlignment="Left"
  70. IsCurrentPage="True"
  71. MaxPageRange="{Binding MaxPageRange}"
  72. Loaded="PageRangeComboBox_Loaded"
  73. SelectedIndex="{Binding PageRangeSelectIndex, Mode=TwoWay}"
  74. Text="{Binding PageRangeText, Mode=TwoWay}">
  75. <i:Interaction.Triggers>
  76. <i:EventTrigger EventName="SelectionChanged">
  77. <i:InvokeCommandAction Command="{Binding CmbPageSelectionChanged}" CommandParameter="{Binding ElementName=ConverterPreview}" />
  78. </i:EventTrigger>
  79. <i:EventTrigger EventName="TextChanged">
  80. <i:InvokeCommandAction Command="{Binding CmbPageTextChanged}" CommandParameter="{Binding ElementName=ConverterPreview}" />
  81. </i:EventTrigger>
  82. </i:Interaction.Triggers>
  83. </cus:WritableComboBox>
  84. </StackPanel>
  85. </StackPanel>
  86. </Grid>
  87. </Grid>
  88. </cus:DialogContent.Content>
  89. <cus:DialogContent.BottmBar>
  90. <Grid>
  91. <!--<Button Background="WhiteSmoke" Width="98" Height="32" Margin="0,0,400,0" Command="{Binding BatchConverterCommand}" Style="{StaticResource btn.sec}">
  92. <Border>
  93. <TextBlock Text="批量处理" ></TextBlock>
  94. </Border>
  95. </Button>-->
  96. <Button
  97. Width="98"
  98. Height="32"
  99. Margin="0,0,16,0"
  100. HorizontalAlignment="Right"
  101. Command="{Binding CancelCommand}"
  102. Content="取消"
  103. Style="{StaticResource btn.sec}"/>
  104. <Button
  105. Width="98"
  106. Height="32"
  107. Margin="124,0"
  108. HorizontalAlignment="Right"
  109. Command="{Binding ConverterCommnad}"
  110. Content="转换"
  111. Style="{StaticResource Btn.cta}"/>
  112. </Grid>
  113. </cus:DialogContent.BottmBar>
  114. </cus:DialogContent>
  115. </UserControl>