ConverterCSVDialog.xaml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <UserControl
  2. x:Class="PDF_Master.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_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="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="{Binding T_Title}">
  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 Settings" />
  38. <StackPanel Margin="0,10,0,0">
  39. <RadioButton
  40. IsChecked="True"
  41. Name="ForEachPageRadioBtn"
  42. Padding="8,0,0,0"
  43. Style="{StaticResource RadioButtonStyleText}"
  44. Command="{Binding RadioButtonCommand}"
  45. CommandParameter="{Binding ElementName=ForEachPageRadioBtn, Path=Name}">
  46. <TextBlock Text="Create worksheets for each &#13; form" />
  47. </RadioButton>
  48. <RadioButton
  49. Name="OnlyTableRadioBtn"
  50. Margin="0,8,0,0"
  51. Style="{StaticResource RadioButtonStyleText}"
  52. Command="{Binding RadioButtonCommand}"
  53. CommandParameter="{Binding ElementName=OnlyTableRadioBtn, Path=Name}">
  54. <TextBlock Text="Create a single worksheet for &#13; a document" />
  55. </RadioButton>
  56. </StackPanel>
  57. <StackPanel Margin="0,18,0,0" Orientation="Vertical">
  58. <TextBlock
  59. Height="20"
  60. HorizontalAlignment="Left"
  61. Style="{StaticResource PropertyHeaderLv2}"
  62. Text="Page Range" />
  63. <cus:WritableComboBox
  64. x:Name="PageRangeComboBox"
  65. Width="228"
  66. Height="32"
  67. Margin="0,10,0,0"
  68. HorizontalAlignment="Left"
  69. IsCurrentPage="True"
  70. MaxPageRange="{Binding MaxPageRange}"
  71. Loaded="PageRangeComboBox_Loaded"
  72. SelectedIndex="{Binding PageRangeSelectIndex, Mode=TwoWay}"
  73. Text="{Binding PageRangeText, Mode=TwoWay}">
  74. <i:Interaction.Triggers>
  75. <i:EventTrigger EventName="SelectionChanged">
  76. <i:InvokeCommandAction Command="{Binding CmbPageSelectionChanged}" CommandParameter="{Binding ElementName=ConverterPreview}" />
  77. </i:EventTrigger>
  78. <i:EventTrigger EventName="TextChanged">
  79. <i:InvokeCommandAction Command="{Binding CmbPageTextChanged}" CommandParameter="{Binding ElementName=ConverterPreview}" />
  80. </i:EventTrigger>
  81. <i:KeyTrigger FiredOn="KeyDown" Key="Return">
  82. <i:InvokeCommandAction Command="{Binding SetCustomPageRangeCommand}" ></i:InvokeCommandAction>
  83. </i:KeyTrigger>
  84. </i:Interaction.Triggers>
  85. </cus:WritableComboBox>
  86. </StackPanel>
  87. </StackPanel>
  88. </Grid>
  89. </Grid>
  90. </cus:DialogContent.Content>
  91. <cus:DialogContent.BottmBar>
  92. <Grid>
  93. <!--<Button Background="WhiteSmoke" Width="98" Height="32" Margin="0,0,400,0" Command="{Binding BatchConverterCommand}" Style="{StaticResource btn.sec}">
  94. <Border>
  95. <TextBlock Text="批量处理" ></TextBlock>
  96. </Border>
  97. </Button>-->
  98. <Button
  99. Width="98"
  100. Height="32"
  101. Margin="0,0,16,0"
  102. HorizontalAlignment="Right"
  103. Command="{Binding CancelCommand}"
  104. Content="{Binding T_No}"
  105. Style="{StaticResource btn.sec}"/>
  106. <Button
  107. Width="98"
  108. Height="32"
  109. Margin="124,0"
  110. HorizontalAlignment="Right"
  111. Command="{Binding ConverterCommnad}"
  112. Content="{Binding T_YES}"
  113. Style="{StaticResource Btn.cta}"/>
  114. </Grid>
  115. </cus:DialogContent.BottmBar>
  116. </cus:DialogContent>
  117. </UserControl>