ConverterWordDialog.xaml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <UserControl
  2. x:Class="PDF_Master.Views.Dialog.ConverterDialogs.ConverterWordDialog"
  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_Master.ViewModels.Dialog.ConverterDialogs"
  6. xmlns:cus="clr-namespace:PDF_Master.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_Master.Views.Dialog.PageEditDialogs"
  10. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  11. xmlns:pageeditdialogs="clr-namespace:PDF_Master.ViewModels.Dialog.PageEditDialogs"
  12. xmlns:prism="http://prismlibrary.com/"
  13. Width="468"
  14. Height="478"
  15. d:DataContext="{d:DesignInstance Type=converterdialogs:ConverterWordDialogViewModel}"
  16. d:DesignHeight="478"
  17. d:DesignWidth="468"
  18. prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
  19. prism:ViewModelLocator.AutoWireViewModel="True"
  20. mc:Ignorable="d">
  21. <cus:DialogContent Header="{Binding T_Title}">
  22. <cus:DialogContent.Content>
  23. <Grid Grid.Row="1">
  24. <Grid.ColumnDefinitions>
  25. <ColumnDefinition Width="244" />
  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="0,2,0,0" Orientation="Vertical">
  33. <StackPanel Orientation="Vertical" Visibility="Visible">
  34. <TextBlock
  35. Height="20"
  36. HorizontalAlignment="Left"
  37. Style="{StaticResource PropertyHeaderLv2}"
  38. Text="Layout Settings" />
  39. <StackPanel Margin="0,8,0,0" Orientation="Vertical">
  40. <RadioButton
  41. Name="FlowingTextRadioBtn"
  42. Padding="8,0,0,0"
  43. Command="{Binding RadioButtonCommand}"
  44. CommandParameter="{Binding ElementName=FlowingTextRadioBtn, Path=Name}"
  45. Style="{StaticResource RadioButtonStyleText}">
  46. <TextBlock Text="Retain Flowing Text" />
  47. </RadioButton>
  48. <RadioButton
  49. Name="PageLayoutRadioBtn"
  50. Margin="0,8,0,0"
  51. Padding="8,0,0,0"
  52. Command="{Binding RadioButtonCommand}"
  53. CommandParameter="{Binding ElementName=PageLayoutRadioBtn, Path=Name}"
  54. IsChecked="True"
  55. Style="{StaticResource RadioButtonStyleText}">
  56. <TextBlock Text="Retain Page Layout" />
  57. </RadioButton>
  58. </StackPanel>
  59. </StackPanel>
  60. <StackPanel Margin="0,16,0,0" Orientation="Vertical">
  61. <StackPanel Orientation="Vertical" Visibility="Visible">
  62. <TextBlock
  63. Height="20"
  64. HorizontalAlignment="Left"
  65. Style="{StaticResource PropertyHeaderLv2}"
  66. Text="Text Recognition Settings" />
  67. <CheckBox
  68. Name="OCRCheckBox"
  69. Margin="0,8,0,0"
  70. Padding="8,0,0,0"
  71. Command="{Binding OpenOCRCommand}"
  72. IsChecked="{Binding OCRCheckBoxIsCheckBox}">
  73. <TextBlock Text="Recognize text if needed" />
  74. </CheckBox>
  75. <ComboBox
  76. Width="208"
  77. Height="32"
  78. Margin="0,8,0,8"
  79. HorizontalAlignment="Left"
  80. IsEnabled="{Binding ElementName=OCRCheckBox, Path=IsChecked}"
  81. SelectedIndex="{Binding LanguageSelectedIndex}">
  82. <ComboBoxItem Content="Chinese Simplified" />
  83. <ComboBoxItem Content="Chinese Traditional" />
  84. <ComboBoxItem Content="English" />
  85. <ComboBoxItem Content="Japanese" />
  86. <ComboBoxItem Content="Korean" />
  87. </ComboBox>
  88. </StackPanel>
  89. <StackPanel Margin="0,0,0,0" Orientation="Vertical">
  90. <TextBlock
  91. Height="20"
  92. HorizontalAlignment="Left"
  93. Style="{StaticResource PropertyHeaderLv2}"
  94. Text="{Binding T_PageRange}" />
  95. <cus:WritableComboBox
  96. x:Name="PageRangeComboBox"
  97. Width="208"
  98. Height="32"
  99. Margin="0,8,0,0"
  100. HorizontalAlignment="Left"
  101. IsCurrentPage="True"
  102. Loaded="PageRangeComboBox_Loaded"
  103. MaxPageRange="{Binding MaxPageRange}"
  104. SelectedIndex="{Binding PageRangeSelectIndex, Mode=TwoWay}"
  105. Text="{Binding PageRangeText, Mode=TwoWay}">
  106. <i:Interaction.Triggers>
  107. <i:EventTrigger EventName="SelectionChanged">
  108. <i:InvokeCommandAction Command="{Binding CmbPageSelectionChanged}" CommandParameter="{Binding ElementName=ConverterPreview}" />
  109. </i:EventTrigger>
  110. <i:EventTrigger EventName="TextChanged">
  111. <i:InvokeCommandAction Command="{Binding CmbPageTextChanged}" CommandParameter="{Binding ElementName=ConverterPreview}" />
  112. </i:EventTrigger>
  113. <i:KeyTrigger Key="Return" FiredOn="KeyDown">
  114. <i:InvokeCommandAction Command="{Binding SetCustomPageRangeCommand}" />
  115. </i:KeyTrigger>
  116. </i:Interaction.Triggers>
  117. </cus:WritableComboBox>
  118. </StackPanel>
  119. </StackPanel>
  120. </StackPanel>
  121. </Grid>
  122. <StackPanel
  123. Grid.ColumnSpan="2"
  124. Height="20"
  125. Margin="0,0,16,8"
  126. HorizontalAlignment="Right"
  127. VerticalAlignment="Bottom"
  128. Panel.ZIndex="2"
  129. Orientation="Horizontal"
  130. Visibility="{Binding LimitationsConvertVisible}">
  131. <Grid Width="16" Height="16">
  132. <Ellipse
  133. Width="13"
  134. Height="13"
  135. Fill="white"
  136. Stroke="#CED0D4" />
  137. <Path Data="M7.4701 8.91H8.5001L8.7601 5.49L8.8101 4H7.1601L7.2101 5.49L7.4701 8.91ZM7.9901 11.58C8.4901 11.58 8.8701 11.21 8.8701 10.69C8.8701 10.17 8.4901 9.81 7.9901 9.81C7.4801 9.81 7.1001 10.17 7.1001 10.69C7.1001 11.21 7.4701 11.58 7.9901 11.58Z" Fill="#94989C" />
  138. </Grid>
  139. <TextBlock
  140. Height="20"
  141. Margin="4,0,0,0"
  142. FontFamily="Segoe UI"
  143. FontSize="12"
  144. Foreground="#252629"
  145. Text="First 10 pages for free conversion." />
  146. <TextBlock
  147. Height="20"
  148. Margin="8,0,0,0"
  149. FontFamily="Segoe UI"
  150. FontSize="12"
  151. Foreground="{StaticResource color.light.blue.5}">
  152. <i:Interaction.Triggers>
  153. <i:EventTrigger EventName="MouseDown">
  154. <i:InvokeCommandAction Command="{Binding UnlockMouseDownCommand}" />
  155. </i:EventTrigger>
  156. </i:Interaction.Triggers>
  157. <Underline>
  158. <TextBlock Text="{Binding TextUpgrade}" />
  159. </Underline>
  160. </TextBlock>
  161. </StackPanel>
  162. </Grid>
  163. </cus:DialogContent.Content>
  164. <cus:DialogContent.BottmBar>
  165. <Grid>
  166. <!--<Button Background="WhiteSmoke" Width="98" Height="32" Margin="0,0,350,0" Command="{Binding BatchConverterCommand}" Style="{StaticResource btn.sec}">
  167. <Border>
  168. <TextBlock Text="批量处理" ></TextBlock>
  169. </Border>
  170. </Button>-->
  171. <Button
  172. Width="98"
  173. Height="32"
  174. Margin="0,0,16,0"
  175. HorizontalAlignment="Right"
  176. Command="{Binding CancelCommand}"
  177. Content="{Binding T_No}"
  178. Style="{StaticResource btn.sec}">
  179. <i:Interaction.Triggers>
  180. <i:EventTrigger EventName="PreviewMouseDown">
  181. <i:InvokeCommandAction Command="{Binding PreviewCancelDownCommand}" CommandParameter="{Binding ElementName=PageRangeComboBox}" />
  182. </i:EventTrigger>
  183. </i:Interaction.Triggers>
  184. </Button>
  185. <Button
  186. Width="98"
  187. Height="32"
  188. Margin="124,0"
  189. HorizontalAlignment="Right"
  190. Command="{Binding ConverterCommnad}"
  191. Content="{Binding T_YES}"
  192. Style="{StaticResource Btn.cta}" />
  193. </Grid>
  194. </cus:DialogContent.BottmBar>
  195. </cus:DialogContent>
  196. </UserControl>