MainWindow.xaml 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. <Window x:Class="Annotations.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Annotations"
  7. xmlns:cpdftools="clr-namespace:Compdfkit_Tools.PDFControl;assembly=Compdfkit_Tools"
  8. xmlns:cpdfcommon="clr-namespace:Compdfkit_Tools.Common;assembly=Compdfkit_Tools"
  9. mc:Ignorable="d"
  10. Loaded="MainWindow_Loaded"
  11. Title="Annotations_ComPDFKit V1.9.1" Height="720" Width="1080" WindowStartupLocation="CenterScreen">
  12. <Window.Resources>
  13. <ResourceDictionary>
  14. <ResourceDictionary.MergedDictionaries>
  15. <ResourceDictionary Source="pack://application:,,,/Compdfkit_Tools;component/Asset/Styles/ToggleButtonStyle.xaml"></ResourceDictionary>
  16. <ResourceDictionary Source="pack://application:,,,/Compdfkit_Tools;component/Asset/Styles/ButtonStyle.xaml"></ResourceDictionary>
  17. <ResourceDictionary Source="pack://application:,,,/Compdfkit_Tools;component/Asset/Styles/ComboBoxStyle.xaml"></ResourceDictionary>
  18. </ResourceDictionary.MergedDictionaries>
  19. <!-- Shortcut -->
  20. <RoutedUICommand x:Key="Open" Text="Open"/>
  21. <RoutedUICommand x:Key="Save" Text="Right rotate"/>
  22. <RoutedUICommand x:Key="SaveAs" Text="Delete"/>
  23. <RoutedUICommand x:Key="Undo" Text="Undo"/>
  24. <RoutedUICommand x:Key="Redo" Text="Redo"/>
  25. <RoutedUICommand x:Key="ControlLeftPanel" Text="Control left panel"/>
  26. <RoutedUICommand x:Key="ControlRightPanel" Text="Control right panel"/>
  27. <RoutedUICommand x:Key="GoToBookmark" Text="Go to bookmark"></RoutedUICommand>
  28. <RoutedUICommand x:Key="GoToOutline" Text="Go to outline"></RoutedUICommand>
  29. <RoutedUICommand x:Key="GoToThumbnail" Text="Go to thumbnail"></RoutedUICommand>
  30. <RoutedUICommand x:Key="GoToAnnotationList" Text="Go to annotation list"></RoutedUICommand>
  31. <RoutedUICommand x:Key="GoToSearch" Text="Go to search"></RoutedUICommand>
  32. <RoutedUICommand x:Key="ScaleAdd" Text="Scale add"></RoutedUICommand>
  33. <RoutedUICommand x:Key="ScaleSubtract" Text="Scale reduce"></RoutedUICommand>
  34. <RoutedUICommand x:Key="DisplaySettings" Text="Display settings"></RoutedUICommand>
  35. <RoutedUICommand x:Key="DocumentInfo" Text="Document infomation"></RoutedUICommand>
  36. <RoutedUICommand x:Key="Highlight" Text="Highlight"></RoutedUICommand>
  37. <RoutedUICommand x:Key="Underline" Text="Underline"></RoutedUICommand>
  38. <RoutedUICommand x:Key="Strikeout" Text="Strikeout"></RoutedUICommand>
  39. <RoutedUICommand x:Key="Squiggly" Text="Squiggly"></RoutedUICommand>
  40. </ResourceDictionary>
  41. </Window.Resources>
  42. <Window.CommandBindings>
  43. <CommandBinding Command="{StaticResource Open}" Executed="CommandBinding_Executed_Open"/>
  44. <CommandBinding Command="{StaticResource Save}" Executed="CommandBinding_Executed_Save"/>
  45. <CommandBinding Command="{StaticResource SaveAs}" Executed="CommandBinding_Executed_SaveAs"/>
  46. <CommandBinding Command="{StaticResource Undo}" Executed="CommandBinding_Executed_Undo"/>
  47. <CommandBinding Command="{StaticResource Redo}" Executed="CommandBinding_Executed_Redo"/>
  48. <CommandBinding Command="{StaticResource ControlLeftPanel}" Executed="CommandBinding_Executed_ControlLeftPanel"></CommandBinding>
  49. <CommandBinding Command="{StaticResource ControlRightPanel}" Executed="CommandBinding_Executed_ControlRightPanel"></CommandBinding>
  50. <CommandBinding Command="{StaticResource GoToBookmark}" Executed="CommandBinding_Executed_Bookmark"></CommandBinding>
  51. <CommandBinding Command="{StaticResource GoToOutline}" Executed="CommandBinding_Executed_Outline"></CommandBinding>
  52. <CommandBinding Command="{StaticResource GoToThumbnail}" Executed="CommandBinding_Executed_Thumbnail"></CommandBinding>
  53. <CommandBinding Command="{StaticResource GoToAnnotationList}" Executed="CommandBinding_Executed_Annotation"></CommandBinding>
  54. <CommandBinding Command="{StaticResource GoToSearch}" Executed="CommandBinding_Executed_Search"></CommandBinding>
  55. <CommandBinding Command="{StaticResource ScaleAdd}" Executed="CommandBinding_Executed_ScaleAdd"></CommandBinding>
  56. <CommandBinding Command="{StaticResource ScaleSubtract}" Executed="CommandBinding_Executed_ScaleSubtract"></CommandBinding>
  57. <CommandBinding Command="{StaticResource DisplaySettings}" Executed="CommandBinding_Executed_DisplaySettings"></CommandBinding>
  58. <CommandBinding Command="{StaticResource DocumentInfo}" Executed="CommandBinding_Executed_DocumentInfo"></CommandBinding>
  59. <CommandBinding Command="{StaticResource Highlight}" Executed="CommandBinding_Executed_Highlight"></CommandBinding>
  60. <CommandBinding Command="{StaticResource Underline}" Executed="CommandBinding_Executed_Underline"></CommandBinding>
  61. <CommandBinding Command="{StaticResource Strikeout}" Executed="CommandBinding_Executed_Strikeout"></CommandBinding>
  62. <CommandBinding Command="{StaticResource Squiggly}" Executed="CommandBinding_Executed_Squiggly"></CommandBinding>
  63. </Window.CommandBindings>
  64. <Window.InputBindings>
  65. <KeyBinding Key="O" Modifiers="Control" Command="{StaticResource Open}"/>
  66. <KeyBinding Key="S" Modifiers="Control" Command="{StaticResource Save}"/>
  67. <KeyBinding Key="S" Modifiers="Control+Shift" Command="{StaticResource SaveAs}"/>
  68. <KeyBinding Key="Z" Modifiers="Control" Command="{StaticResource Undo}"/>
  69. <KeyBinding Key="Y" Modifiers="Control" Command="{StaticResource Redo}"/>
  70. <KeyBinding Key="F4" Command="{StaticResource ControlLeftPanel}"/>
  71. <KeyBinding Key="F4" Modifiers="Control" Command="{StaticResource ControlRightPanel}"/>
  72. <KeyBinding Key="B" Modifiers="Control" Command="{StaticResource GoToBookmark}"></KeyBinding>
  73. <KeyBinding Key="O" Modifiers="Control+Shift" Command="{StaticResource GoToOutline}"></KeyBinding>
  74. <KeyBinding Key="T" Modifiers="Control" Command="{StaticResource GoToThumbnail}"></KeyBinding>
  75. <KeyBinding Key="A" Modifiers="Control" Command="{StaticResource GoToAnnotationList}"></KeyBinding>
  76. <KeyBinding Key="F" Modifiers="Control" Command="{StaticResource GoToSearch}"></KeyBinding>
  77. <KeyBinding Key="Add" Modifiers="Control" Command="{StaticResource ScaleAdd}"></KeyBinding>
  78. <KeyBinding Key="Subtract" Modifiers="Control" Command="{StaticResource ScaleSubtract}"></KeyBinding>
  79. <KeyBinding Key="D" Modifiers="Control" Command="{StaticResource DisplaySettings}"></KeyBinding>
  80. <KeyBinding Key="I" Modifiers="Control" Command="{StaticResource DocumentInfo}"></KeyBinding>
  81. <KeyBinding Key="H" Modifiers="Control+Alt" Command="{StaticResource Highlight}"></KeyBinding>
  82. <KeyBinding Key="U" Modifiers="Control+Alt" Command="{StaticResource Underline}"></KeyBinding>
  83. <KeyBinding Key="Q" Modifiers="Control+Alt" Command="{StaticResource Squiggly}"></KeyBinding>
  84. <KeyBinding Key="S" Modifiers="Control+Alt" Command="{StaticResource Strikeout}"></KeyBinding>
  85. </Window.InputBindings>
  86. <Grid>
  87. <Grid>
  88. <Grid.RowDefinitions>
  89. <RowDefinition Height="40"></RowDefinition>
  90. <RowDefinition Height="*"></RowDefinition>
  91. </Grid.RowDefinitions>
  92. <Grid>
  93. <Grid.ColumnDefinitions>
  94. <ColumnDefinition Width="auto"></ColumnDefinition>
  95. <ColumnDefinition Width="*"></ColumnDefinition>
  96. <ColumnDefinition Width="auto"></ColumnDefinition>
  97. </Grid.ColumnDefinitions>
  98. <StackPanel Orientation="Horizontal" Height="40" Margin="20,0,0,0">
  99. <Button BorderThickness="0" VerticalContentAlignment="Center" Width="30" Height="30" Style="{StaticResource LightButtonStyle}" Background="Transparent" Click="OpenFile_Click">
  100. <Button.Content>
  101. <Viewbox Width="20" Height="20">
  102. <Path Fill="#43474D" >
  103. <Path.Data>
  104. M3.75,2 L3.91967773,2.00463867 C4.08325195,2.01391602 4.22851562,2.03710938 4.35546875,2.07421875 C4.52473958,2.12369792
  105. 4.67578125,2.18489583 4.80859375,2.2578125 C4.94140625,2.33072917 5.05989583,2.41145833 5.1640625,2.5 C5.26822917,2.58854167
  106. 5.37369792,2.66927083 5.48046875,2.7421875 C5.58723958,2.81510417 5.70182292,2.87630208 5.82421875,2.92578125 C5.94661458,2.97526042
  107. 6.08854167,3 6.25,3 L6.25,3 L12,3 L12.1371528,3.00868056 C12.2262731,3.02025463 12.3107639,3.04340278 12.390625,3.078125
  108. C12.5104167,3.13020833 12.6158854,3.20182292 12.7070312,3.29296875 C12.7981771,3.38411458 12.8697917,3.48958333 12.921875,3.609375
  109. C12.9739583,3.72916667 13,3.859375 13,4 L13,4 L13,6 L15,6 L15.1332465,6.00868056 C15.2206308,6.02025463 15.3051215,6.04340278
  110. 15.3867188,6.078125 C15.5091146,6.13020833 15.6158854,6.20182292 15.7070312,6.29296875 C15.7981771,6.38411458 15.8697917,6.48958333
  111. 15.921875,6.609375 C15.9739583,6.72916667 16,6.85677083 16,6.9921875 C16,7.1484375 15.9635417,7.29947917 15.890625,7.4453125
  112. L15.890625,7.4453125 L12.6171875,14 L0,14 L0,3 L0.00868055556,2.86284722 C0.0202546296,2.77372685 0.0434027778,2.68923611 0.078125,2.609375
  113. C0.130208333,2.48958333 0.201822917,2.38411458 0.29296875,2.29296875 C0.384114583,2.20182292 0.489583333,2.13020833 0.609375,2.078125
  114. C0.729166667,2.02604167 0.859375,2 1,2 L1,2 L3.75,2 Z M15,7 L4.3125,7 L1.3125,13 L12,13 L15,7 Z M3.75,3 L1,3 L1,11.3828125 L3.4140625,6.5546875
  115. L3.48706055,6.43261719 C3.56665039,6.31738281 3.66601562,6.22265625 3.78515625,6.1484375 C3.94401042,6.04947917 4.11979167,6 4.3125,6
  116. L4.3125,6 L12,6 L12,4 L6.25,4 L6.08032227,3.99536133 C5.91674805,3.98608398 5.77148438,3.96289062 5.64453125,3.92578125 C5.47526042,3.87630208
  117. 5.32421875,3.81510417 5.19140625,3.7421875 C5.05859375,3.66927083 4.94010417,3.58854167 4.8359375,3.5 C4.73177083,3.41145833 4.62630208,3.33072917
  118. 4.51953125,3.2578125 C4.41276042,3.18489583 4.29817708,3.12369792 4.17578125,3.07421875 C4.05338542,3.02473958 3.91145833,3 3.75,3 L3.75,3 Z
  119. </Path.Data>
  120. </Path>
  121. </Viewbox>
  122. </Button.Content>
  123. <Button.ToolTip>
  124. <ToolTip Content="Open..."></ToolTip>
  125. </Button.ToolTip>
  126. </Button>
  127. <Button BorderThickness="0" VerticalContentAlignment="Center" Margin="10,0,0,0" Width="30" Height="30" Style="{StaticResource LightButtonStyle}" Background="Transparent"
  128. Click="SaveFileBtn_Click" IsEnabled="{Binding CanSave,Mode=OneWay}">
  129. <Button.Content>
  130. <Viewbox Width="20" Height="20">
  131. <Path Fill="#43474D" >
  132. <Path.Data>
  133. M11.707107,1 L15,4.29289322 L15,15 L1,15 L1,1 L11.707107,1 Z M11.293,2 L2,2 L2,14 L4,14 L4,8 L12,8 L12,14 L14,14 L14,4.707 L11.293,2 Z
  134. M11,9 L5,9 L5,14 L11,14 L11,9 Z M7,5 L7,6 L4,6 L4,5 L7,5 Z
  135. </Path.Data>
  136. </Path>
  137. </Viewbox>
  138. </Button.Content>
  139. <Button.ToolTip>
  140. <ToolTip Content="Save"></ToolTip>
  141. </Button.ToolTip>
  142. </Button>
  143. <ToggleButton Name="LeftToolPanelButton" Margin="13,0,0,0" BorderThickness="0" Width="30" Height="30" Style="{StaticResource ToggleButtonStyle}" Background="Transparent" Click="LeftToolPanelButton_Click">
  144. <ToggleButton.Content>
  145. <Path Fill="#43474D" Width="30" Height="30">
  146. <Path.Data>
  147. M22.5 8.5H7.5V12.25H13H22.5V8.5ZM12.25 13.75H7.5V21.5H12.25V13.75ZM13.75 21.5V13.75H22.5V21.5H13.75ZM7.5 7H6V8.5V21.5V23H7.5H22.5H24V21.5V8.5V7H22.5H7.5Z
  148. </Path.Data>
  149. </Path>
  150. </ToggleButton.Content>
  151. <ToggleButton.ToolTip>
  152. <ToolTip Content="Panel"></ToolTip>
  153. </ToggleButton.ToolTip>
  154. </ToggleButton>
  155. <Line Margin="13,0,13,0" Stroke="#E0E0E0" X1="0" Y1="5" X2="0" Y2="35"></Line>
  156. <ToggleButton BorderThickness="0" Width="30" Height="30" Style="{StaticResource ToggleButtonStyle}" Background="Transparent" IsChecked="True" IsEnabled="False" Visibility="Collapsed">
  157. <ToggleButton.Content>
  158. <Path Fill="#43474D">
  159. <Path.Data>
  160. M8.7463 7.94055L8.43134 3.20358C8.38986 2.6073 8.82031 2.08322 9.40947 2.01273L9.46546 2.00656C9.75502 1.97416 10.0451 2.06271 10.2681 2.25159C10.4911
  161. 2.44047 10.6276 2.71317 10.6457 3.00614L10.9886 8.17061C10.999 8.31659 11.1097 8.43516 11.2537 8.45444C11.3176 8.46288 11.382 8.44409 11.4315
  162. 8.40258C11.481 8.36108 11.5111 8.30063 11.5145 8.23584L11.7612 3.47595C11.7918 2.85998 12.3116 2.38523 12.923 2.41468H12.9309C13.5429 2.44972
  163. 14.0111 2.97745 13.9773 3.59407L13.7218 8.51438C13.7137 8.66679 13.8235 8.79975 13.9738 8.81936C14.1225 8.83876 14.2625 8.73915 14.2914
  164. 8.59018L14.8006 6.02337C14.9178 5.41517 15.497 5.01851 16.0954 5.13574L16.1041 5.13751C16.7058 5.25854 17.0969 5.84695 16.979 6.45353L16.3684
  165. 9.53687C15.8189 13.3474 15.0586 15.5052 14.3946 16.4246C13.3649 17.8508 11.5573 17.8667 10.1251 17.8667C8.69381 17.8667 7.16012 17.5291 6.44796
  166. 16.9993C5.73492 16.4696 4.77079 15.2575 4.15837 13.9327L4.16712 13.9283C4.11876 13.8639 4.0774 13.7945 4.04376 13.7212L3.105 11.685C2.84552 11.1243
  167. 3.08338 10.4577 3.63781 10.1918L3.64656 10.1874C3.91235 10.0626 4.21656 10.0497 4.49179 10.1517C4.76702 10.2536 4.99055 10.4619 5.11287 10.7304C5.62206
  168. 11.8234 5.94227 12.324 6.07526 12.2324C6.27386 12.0949 6.12075 11.7176 5.85478 9.21249C5.67578 7.53039 5.45319 5.85328 5.18724 4.18289C5.07653 3.5968
  169. 5.44002 3.02581 6.01489 2.88273L6.07526 2.86775C6.35866 2.79957 6.65742 2.85178 6.90147 3.01215C7.14552 3.17252 7.3134 3.42693 7.36572 3.71571L8.168
  170. 8.02341C8.19642 8.17613 8.33897 8.27937 8.49171 8.25787C8.64561 8.23564 8.75656 8.09774 8.7463 7.94143V7.94055Z
  171. </Path.Data>
  172. </Path>
  173. </ToggleButton.Content>
  174. </ToggleButton>
  175. <Line Margin="13,0,13,0" Stroke="#E0E0E0" X1="0" Y1="5" X2="0" Y2="35"></Line>
  176. <cpdftools:CPDFScalingControl x:Name="CPDFSaclingControl"></cpdftools:CPDFScalingControl>
  177. </StackPanel>
  178. <ComboBox Name="ModeComboBox" Style="{StaticResource ComboBoxStyle1}" Width="120" Height="26" Grid.Column="1" HorizontalAlignment="Center" FontSize="14" Foreground="#001A4E" SelectionChanged="ComboBox_SelectionChanged">
  179. <ComboBoxItem IsSelected="True" Tag="Viewer">Viewer</ComboBoxItem>
  180. <ComboBoxItem IsSelected="True" Tag="Annotation">Annotation</ComboBoxItem>
  181. </ComboBox>
  182. <StackPanel Orientation="Horizontal" Grid.Column="2">
  183. <Button BorderThickness="0" Width="40" Height="40" Style="{StaticResource LightButtonStyle}" Background="Transparent" Click="ExpandSearchBtn_Click">
  184. <Button.Content>
  185. <Path Fill="#43474D">
  186. <Path.Data>
  187. M5.10992 13.9353C2.71184 11.5372 2.71184 7.64917 5.10992 5.25108C7.50801 2.853 11.3961 2.853 13.7942 5.25108C16.1922 7.64917
  188. 16.1922 11.5372 13.7942 13.9353C11.3961 16.3334 7.50801 16.3334 5.10992 13.9353ZM4.04926 4.19042C1.06539 7.17429 1.06539 12.0121
  189. 4.04926 14.996C6.85422 17.8009 11.2975 17.9691 14.2989 15.5005L17.1989 18.4006C17.4918 18.6935 17.9667 18.6935 18.2596
  190. 18.4006C18.5525 18.1077 18.5525 17.6328 18.2596 17.3399L15.3595 14.4399C17.828 11.4384 17.6597 6.99533 14.8548
  191. 4.19042C11.8709 1.20655 7.03313 1.20655 4.04926 4.19042Z
  192. </Path.Data>
  193. </Path>
  194. </Button.Content>
  195. <Button.ToolTip>
  196. <ToolTip Content="Search"></ToolTip>
  197. </Button.ToolTip>
  198. </Button>
  199. <ToggleButton x:Name="RightPanelButton" BorderThickness="0" Width="40" Height="40" Style="{StaticResource ToggleButtonStyle}" Background="Transparent" Click="RightPanelButton_Click">
  200. <ToggleButton.Content>
  201. <Path Fill="#43474D" Width="30" Height="30">
  202. <Path.Data>
  203. M22.5 8.5H7.5V12.25H13H22.5V8.5ZM12.25 13.75H7.5V21.5H12.25V13.75ZM13.75 21.5V13.75H22.5V21.5H13.75ZM7.5 7H6V8.5V21.5V23H7.5H22.5H24V21.5V8.5V7H22.5H7.5Z
  204. </Path.Data>
  205. </Path>
  206. </ToggleButton.Content>
  207. <ToggleButton.ToolTip>
  208. <ToolTip Content="Properties"></ToolTip>
  209. </ToggleButton.ToolTip>
  210. </ToggleButton>
  211. <ToggleButton Name="ViewSettingBtn" BorderThickness="0" Width="40" Height="40" Style="{StaticResource ToggleButtonStyle}" Background="Transparent" Click="ViewSettingBtn_Click">
  212. <ToggleButton.Content>
  213. <Path Stroke="#43474D" VerticalAlignment="Center" StrokeThickness="2">
  214. <Path.Data>
  215. <CombinedGeometry GeometryCombineMode="Exclude">
  216. <CombinedGeometry.Geometry1>
  217. M18.3327 10C18.3327 10 14.6017 16.25 9.99935 16.25C5.39698 16.25 1.66602 10 1.66602 10C1.66602 10 5.39698 3.75 9.99935 3.75C14.6017 3.75 18.3327 10 18.3327 10Z
  218. </CombinedGeometry.Geometry1>
  219. <CombinedGeometry.Geometry2>
  220. <EllipseGeometry Center="10,10" RadiusX="2" RadiusY="2"/>
  221. </CombinedGeometry.Geometry2>
  222. </CombinedGeometry>
  223. </Path.Data>
  224. </Path>
  225. </ToggleButton.Content>
  226. <ToggleButton.ToolTip>
  227. <ToolTip Content="Page Display"></ToolTip>
  228. </ToggleButton.ToolTip>
  229. </ToggleButton>
  230. <Button BorderThickness="0" Width="40" Height="40" Style="{StaticResource LightButtonStyle}" Background="Transparent" Click="PageInfoBtn_Click">
  231. <Button.Content>
  232. <Path Fill="#43474D" VerticalAlignment="Center">
  233. <Path.Data>
  234. M2.75 10C2.75 5.99594 5.99594 2.75 10 2.75C14.0041 2.75 17.25 5.99594 17.25 10C17.25 14.0041 14.0041 17.25 10
  235. 17.25C5.99594 17.25 2.75 14.0041 2.75 10ZM10 1.25C5.16751 1.25 1.25 5.16751 1.25 10C1.25 14.8325 5.16751
  236. 18.75 10 18.75C14.8325 18.75 18.75 14.8325 18.75 10C18.75 5.16751 14.8325 1.25 10 1.25ZM6.5 11C7.05228 11
  237. 7.5 10.5523 7.5 10C7.5 9.44771 7.05228 9 6.5 9C5.94772 9 5.5 9.44771 5.5 10C5.5 10.5523 5.94772 11 6.5 11ZM10
  238. 11C10.5523 11 11 10.5523 11 10C11 9.44771 10.5523 9 10 9C9.44771 9 9 9.44771 9 10C9 10.5523 9.44771 11 10 11ZM14.5
  239. 10C14.5 10.5523 14.0523 11 13.5 11C12.9477 11 12.5 10.5523 12.5 10C12.5 9.44771 12.9477 9 13.5 9C14.0523 9 14.5 9.44771 14.5 10Z
  240. </Path.Data>
  241. </Path>
  242. </Button.Content>
  243. <Button.ToolTip>
  244. <ToolTip Content="Document Info"></ToolTip>
  245. </Button.ToolTip>
  246. </Button>
  247. </StackPanel>
  248. </Grid>
  249. <Grid Name="BodyGrid" Grid.Row="1">
  250. <Grid.RowDefinitions>
  251. <RowDefinition Height="auto"/>
  252. <RowDefinition Height="*"/>
  253. </Grid.RowDefinitions>
  254. <Grid.ColumnDefinitions>
  255. <ColumnDefinition Width="0"></ColumnDefinition>
  256. <ColumnDefinition Width="0"></ColumnDefinition>
  257. <ColumnDefinition Width="*"></ColumnDefinition>
  258. <ColumnDefinition Width="auto"></ColumnDefinition>
  259. </Grid.ColumnDefinitions>
  260. <Border x:Name="ToolBarContainer" Height="45" Visibility="Visible" BorderThickness="1" BorderBrush="#1A000000" Background="#F2F3F5" Grid.ColumnSpan="4">
  261. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
  262. <cpdftools:CPDFAnnotationBarControl x:Name="AnnotationBarControl" Loaded="AnnotationBarControl_Loaded" Unloaded="AnnotationBarControl_Unloaded" Height="44"/>
  263. <Line Height="40" Stroke="#D5D6D8" StrokeThickness="2" X1="0" Y1="10" X2="0" Y2="30" Margin="8,0,8,0" />
  264. <Button Name="UndoBtn" Style="{StaticResource LightButtonStyle}" BorderThickness="0" Width="40" Height="40" IsEnabled="{Binding CanUndo,Mode=OneWay}" Click="UndoButton_Click"
  265. Background="Transparent">
  266. <Path x:Name="UndoPath" IsEnabled="{Binding CanUndo,Mode=OneWay}">
  267. <Path.Style>
  268. <Style TargetType="Path">
  269. <Style.Triggers>
  270. <Trigger Property="IsEnabled" Value="False">
  271. <Setter Property="Fill" Value="LightGray"/>
  272. </Trigger>
  273. <Trigger Property="IsEnabled" Value="True">
  274. <Setter Property="Fill" Value="#43474D"/>
  275. </Trigger>
  276. </Style.Triggers>
  277. </Style>
  278. </Path.Style>
  279. <Path.Data>
  280. M1.03033 3.62131L0.5 4.15164L1.03033 4.68197L4.65164 8.30328L5.7123 7.24261L3.37132 4.90164H10.0607C11.5794 4.90164 12.8107 6.13285 12.8107
  281. 7.65164C12.8107 9.17042 11.5794 10.4016 10.0607 10.4016H2.56066V11.9016H10.0607C12.4079 11.9016 14.3107 9.99885 14.3107 7.65164C14.3107
  282. 5.30443 12.4079 3.40164 10.0607 3.40164H3.37132L5.7123 1.06066L4.65164 0L1.03033 3.62131Z
  283. </Path.Data>
  284. </Path>
  285. <Button.ToolTip>
  286. <ToolTip Content="Undo"></ToolTip>
  287. </Button.ToolTip>
  288. </Button>
  289. <Button Style="{StaticResource LightButtonStyle}" BorderThickness="0" Width="40" Height="40" Margin="10,0,0,0" IsEnabled="{Binding CanRedo,Mode=OneWay}" Click="RedoButton_Click"
  290. Background="Transparent">
  291. <Path IsEnabled="{Binding CanRedo,Mode=OneWay}">
  292. <Path.Resources>
  293. <Style TargetType="Path">
  294. <Style.Triggers>
  295. <Trigger Property="IsEnabled" Value="False">
  296. <Setter Property="Fill" Value="LightGray"/>
  297. </Trigger>
  298. <Trigger Property="IsEnabled" Value="True">
  299. <Setter Property="Fill" Value="#43474D"/>
  300. </Trigger>
  301. </Style.Triggers>
  302. </Style>
  303. </Path.Resources>
  304. <Path.Data>
  305. M13.7802 3.62131L14.3105 4.15164L13.7802 4.68197L10.1589 8.30328L9.09825 7.24261L11.4392 4.90164H4.74989C3.2311 4.90164 1.99989 6.13285
  306. 1.99989 7.65164C1.99989 9.17042 3.2311 10.4016 4.74989 10.4016H12.2499V11.9016H4.74989C2.40268 11.9016 0.499887 9.99885 0.499887
  307. 7.65164C0.499887 5.30443 2.40268 3.40164 4.74989 3.40164H11.4392L9.09825 1.06066L10.1589 0L13.7802 3.62131Z
  308. </Path.Data>
  309. </Path>
  310. <Button.ToolTip>
  311. <ToolTip Content="Redo"></ToolTip>
  312. </Button.ToolTip>
  313. </Button>
  314. </StackPanel>
  315. </Border>
  316. <cpdftools:CPDFBOTABarControl Grid.Row="1" Visibility="Collapsed" Name="BotaSideTool"/>
  317. <GridSplitter Grid.Row="1" Name="Splitter" Grid.Column="1" Width="15" ResizeBehavior="PreviousAndNext" Visibility="Collapsed">
  318. <GridSplitter.Template>
  319. <ControlTemplate TargetType="{x:Type GridSplitter}">
  320. <Border BorderThickness="{TemplateBinding Border.BorderThickness}"
  321. BorderBrush="{TemplateBinding Border.BorderBrush}"
  322. Background="{TemplateBinding Panel.Background}" >
  323. <Path Fill="Gray" VerticalAlignment="Center">
  324. <Path.Data>
  325. M15 3.75H1V2.25H15V3.75ZM15 8.75H1V7.25H15V8.75ZM1 13.75H15V12.25H1V13.75Z
  326. </Path.Data>
  327. </Path>
  328. </Border>
  329. </ControlTemplate>
  330. </GridSplitter.Template>
  331. </GridSplitter>
  332. <Grid Grid.Row="1" Grid.Column="2" >
  333. <Grid.RowDefinitions>
  334. <RowDefinition Height="auto"/>
  335. <RowDefinition Height="*"/>
  336. </Grid.RowDefinitions>
  337. <Grid Grid.Row="1">
  338. <Grid.ColumnDefinitions>
  339. <ColumnDefinition></ColumnDefinition>
  340. <ColumnDefinition Width="auto"></ColumnDefinition>
  341. </Grid.ColumnDefinitions>
  342. <Border x:Name="PDFGrid" Background="#CECECE"></Border>
  343. <Border Grid.Column="1" Grid.RowSpan="2" Name="PropertyContainer" Visibility="Collapsed"></Border>
  344. </Grid>
  345. <cpdfcommon:PageNumberControl Grid.Row="1" Name="FloatPageTool" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,0,0,20"></cpdfcommon:PageNumberControl>
  346. </Grid>
  347. </Grid>
  348. </Grid>
  349. <Border Name="PopupBorder" Background="#A0000000" Visibility="Collapsed">
  350. <Grid>
  351. <cpdftools:CPDFInfoControl x:Name="CPDFInfoControl" Visibility="Collapsed"></cpdftools:CPDFInfoControl>
  352. <cpdfcommon:PasswordDialog x:Name="PasswordUI" Visibility="Collapsed"></cpdfcommon:PasswordDialog>
  353. </Grid>
  354. </Border>
  355. </Grid>
  356. </Window>