MainWindow.xaml 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. <Window x:Class="DocsEditor.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:cpdftools="clr-namespace:ComPDFKit.Controls.PDFControl;assembly=ComPDFKit.Controls"
  7. xmlns:local="clr-namespace:DocsEditor"
  8. xmlns:cpdfcommon="clr-namespace:ComPDFKit.Controls.Common;assembly=ComPDFKit.Controls"
  9. mc:Ignorable="d"
  10. Title="{Binding AppInfo}" Height="450" Width="800">
  11. <Window.Resources>
  12. <ResourceDictionary>
  13. <ResourceDictionary.MergedDictionaries>
  14. <ResourceDictionary Source="pack://application:,,,/ComPDFKit.Controls;component/Asset/Styles/ToggleButtonStyle.xaml"></ResourceDictionary>
  15. <ResourceDictionary Source="pack://application:,,,/ComPDFKit.Controls;component/Asset/Styles/ButtonStyle.xaml"></ResourceDictionary>
  16. <ResourceDictionary Source="pack://application:,,,/ComPDFKit.Controls;component/Asset/Styles/ComboBoxStyle.xaml"></ResourceDictionary>
  17. </ResourceDictionary.MergedDictionaries>
  18. <cpdfcommon:DocInfoResourceConverter x:Key="DocInfoResourceConverter"></cpdfcommon:DocInfoResourceConverter>
  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="ControlLeftPanel" Text="Control left panel"/>
  24. <RoutedUICommand x:Key="ControlRightPanel" Text="Control right panel"/>
  25. <RoutedUICommand x:Key="GoToBookmark" Text="Go to bookmark"></RoutedUICommand>
  26. <RoutedUICommand x:Key="GoToOutline" Text="Go to outline"></RoutedUICommand>
  27. <RoutedUICommand x:Key="GoToThumbnail" Text="Go to thumbnail"></RoutedUICommand>
  28. <RoutedUICommand x:Key="GoToSearch" Text="Go to search"></RoutedUICommand>
  29. <RoutedUICommand x:Key="ScaleAdd" Text="Scale add"></RoutedUICommand>
  30. <RoutedUICommand x:Key="ScaleSubtract" Text="Scale reduce"></RoutedUICommand>
  31. <RoutedUICommand x:Key="DisplaySettings" Text="Display settings"></RoutedUICommand>
  32. <RoutedUICommand x:Key="DocumentInfo" Text="Document infomation"></RoutedUICommand>
  33. </ResourceDictionary>
  34. </Window.Resources>
  35. <Window.CommandBindings>
  36. <CommandBinding Command="{StaticResource Open}" Executed="CommandBinding_Executed_Open"/>
  37. <CommandBinding Command="{StaticResource Save}" Executed="CommandBinding_Executed_Save"/>
  38. <CommandBinding Command="{StaticResource SaveAs}" Executed="CommandBinding_Executed_SaveAs"/>
  39. <CommandBinding Command="{StaticResource ControlLeftPanel}" Executed="CommandBinding_Executed_ControlLeftPanel"></CommandBinding>
  40. <CommandBinding Command="{StaticResource ControlRightPanel}" Executed="CommandBinding_Executed_ControlRightPanel"></CommandBinding>
  41. <CommandBinding Command="{StaticResource GoToBookmark}" Executed="CommandBinding_Executed_Bookmark"></CommandBinding>
  42. <CommandBinding Command="{StaticResource GoToOutline}" Executed="CommandBinding_Executed_Outline"></CommandBinding>
  43. <CommandBinding Command="{StaticResource GoToThumbnail}" Executed="CommandBinding_Executed_Thumbnail"></CommandBinding>
  44. <CommandBinding Command="{StaticResource GoToSearch}" Executed="CommandBinding_Executed_Search"></CommandBinding>
  45. <CommandBinding Command="{StaticResource ScaleAdd}" Executed="CommandBinding_Executed_ScaleAdd"></CommandBinding>
  46. <CommandBinding Command="{StaticResource ScaleSubtract}" Executed="CommandBinding_Executed_ScaleSubtract"></CommandBinding>
  47. <CommandBinding Command="{StaticResource DisplaySettings}" Executed="CommandBinding_Executed_DisplaySettings"></CommandBinding>
  48. <CommandBinding Command="{StaticResource DocumentInfo}" Executed="CommandBinding_Executed_DocumentInfo"></CommandBinding>
  49. </Window.CommandBindings>
  50. <Window.InputBindings>
  51. <KeyBinding Key="O" Modifiers="Control" Command="{StaticResource Open}"/>
  52. <KeyBinding Key="S" Modifiers="Control" Command="{StaticResource Save}"/>
  53. <KeyBinding Key="S" Modifiers="Control+Shift" Command="{StaticResource SaveAs}"/>
  54. <KeyBinding Key="F4" Command="{StaticResource ControlLeftPanel}"/>
  55. <KeyBinding Key="F4" Modifiers="Control" Command="{StaticResource ControlRightPanel}"/>
  56. <KeyBinding Key="B" Modifiers="Control" Command="{StaticResource GoToBookmark}"></KeyBinding>
  57. <KeyBinding Key="O" Modifiers="Control+Shift" Command="{StaticResource GoToOutline}"></KeyBinding>
  58. <KeyBinding Key="T" Modifiers="Control" Command="{StaticResource GoToThumbnail}"></KeyBinding>
  59. <KeyBinding Key="F" Modifiers="Control" Command="{StaticResource GoToSearch}"></KeyBinding>
  60. <KeyBinding Key="Add" Modifiers="Control" Command="{StaticResource ScaleAdd}"></KeyBinding>
  61. <KeyBinding Key="Subtract" Modifiers="Control" Command="{StaticResource ScaleSubtract}"></KeyBinding>
  62. <KeyBinding Key="D" Modifiers="Control" Command="{StaticResource DisplaySettings}"></KeyBinding>
  63. <KeyBinding Key="I" Modifiers="Control" Command="{StaticResource DocumentInfo}"></KeyBinding>
  64. </Window.InputBindings>
  65. <Grid>
  66. <Grid>
  67. <Grid.RowDefinitions>
  68. <RowDefinition Height="40"></RowDefinition>
  69. <RowDefinition Height="*"></RowDefinition>
  70. </Grid.RowDefinitions>
  71. <Grid>
  72. <Grid.ColumnDefinitions>
  73. <ColumnDefinition Width="auto"></ColumnDefinition>
  74. <ColumnDefinition Width="*"></ColumnDefinition>
  75. <ColumnDefinition Width="auto"></ColumnDefinition>
  76. </Grid.ColumnDefinitions>
  77. <Border Height="1" Background="LightGray" VerticalAlignment="Bottom" Grid.ColumnSpan="3"/>
  78. <Grid>
  79. <StackPanel Orientation="Horizontal" Margin="20,0,0,0">
  80. <Button BorderThickness="0" VerticalContentAlignment="Center" Width="30" Height="30" Style="{StaticResource LightButtonStyle}" Background="Transparent" Click="OpenFile_Click">
  81. <Button.Content>
  82. <Viewbox Width="20" Height="20">
  83. <Path Fill="#43474D" >
  84. <Path.Data>
  85. M3.75,2 L3.91967773,2.00463867 C4.08325195,2.01391602 4.22851562,2.03710938 4.35546875,2.07421875 C4.52473958,2.12369792
  86. 4.67578125,2.18489583 4.80859375,2.2578125 C4.94140625,2.33072917 5.05989583,2.41145833 5.1640625,2.5 C5.26822917,2.58854167
  87. 5.37369792,2.66927083 5.48046875,2.7421875 C5.58723958,2.81510417 5.70182292,2.87630208 5.82421875,2.92578125 C5.94661458,2.97526042
  88. 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
  89. C12.5104167,3.13020833 12.6158854,3.20182292 12.7070312,3.29296875 C12.7981771,3.38411458 12.8697917,3.48958333 12.921875,3.609375
  90. 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
  91. 15.3867188,6.078125 C15.5091146,6.13020833 15.6158854,6.20182292 15.7070312,6.29296875 C15.7981771,6.38411458 15.8697917,6.48958333
  92. 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
  93. 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
  94. C0.130208333,2.48958333 0.201822917,2.38411458 0.29296875,2.29296875 C0.384114583,2.20182292 0.489583333,2.13020833 0.609375,2.078125
  95. 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
  96. 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
  97. 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
  98. 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
  99. 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
  100. </Path.Data>
  101. </Path>
  102. </Viewbox>
  103. </Button.Content>
  104. <Button.ToolTip>
  105. <ToolTip Content="Open..."></ToolTip>
  106. </Button.ToolTip>
  107. </Button>
  108. <Button BorderThickness="0" VerticalContentAlignment="Center" Margin="10,0,0,0" Width="30" Height="30" Style="{StaticResource LightButtonStyle}" Background="Transparent"
  109. Click="SaveFileBtn_Click" IsEnabled="{Binding CanSave,Mode=OneWay}">
  110. <Button.Content>
  111. <Viewbox Width="20" Height="20">
  112. <Path IsEnabled="{Binding CanSave,Mode=OneWay}">
  113. <Path.Style>
  114. <Style TargetType="Path">
  115. <Style.Triggers>
  116. <Trigger Property="IsEnabled" Value="False">
  117. <Setter Property="Fill" Value="LightGray"/>
  118. </Trigger>
  119. <Trigger Property="IsEnabled" Value="True">
  120. <Setter Property="Fill" Value="#43474D"/>
  121. </Trigger>
  122. </Style.Triggers>
  123. </Style>
  124. </Path.Style>
  125. <Path.Data>
  126. 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
  127. M11,9 L5,9 L5,14 L11,14 L11,9 Z M7,5 L7,6 L4,6 L4,5 L7,5 Z
  128. </Path.Data>
  129. </Path>
  130. </Viewbox>
  131. </Button.Content>
  132. <Button.ToolTip>
  133. <ToolTip Content="Save"></ToolTip>
  134. </Button.ToolTip>
  135. </Button>
  136. <ToggleButton Name="LeftToolPanelButton" Margin="13,0,0,0" BorderThickness="0" Width="30" Height="30" Style="{StaticResource ToggleButtonStyle}" Background="Transparent" Click="LeftToolPanelButton_Click">
  137. <ToggleButton.Content>
  138. <Path Fill="#43474D" Width="30" Height="30">
  139. <Path.Data>
  140. 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
  141. </Path.Data>
  142. </Path>
  143. </ToggleButton.Content>
  144. <ToggleButton.ToolTip>
  145. <ToolTip Content="Panel"></ToolTip>
  146. </ToggleButton.ToolTip>
  147. </ToggleButton>
  148. <Line Margin="13,0,13,0" Stroke="#E0E0E0" X1="0" Y1="5" X2="0" Y2="35"></Line>
  149. <cpdftools:CPDFScalingControl x:Name="CPDFSaclingControl"></cpdftools:CPDFScalingControl>
  150. </StackPanel>
  151. </Grid>
  152. <ComboBox Name="ViewComboBox" Width="140" Height="26" Grid.Column="1" HorizontalAlignment="Center" FontSize="12" Foreground="#001A4E"
  153. Style="{StaticResource ComboBoxStyle1}" SelectionChanged="ViewComboBox_SelectionChanged">
  154. <ComboBoxItem>Viewer</ComboBoxItem>
  155. <ComboBoxItem IsSelected="True">Page Edit</ComboBoxItem>
  156. </ComboBox>
  157. <StackPanel Orientation="Horizontal" Grid.Column="2">
  158. <Button x:Name="SearchButton" BorderThickness="0" Width="40" Height="40" Style="{StaticResource LightButtonStyle}" Background="Transparent" Focusable="False" Click="ExpandSearchBtn_Click">
  159. <Button.Content>
  160. <Path Fill="#43474D">
  161. <Path.Data>
  162. 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
  163. 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
  164. 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
  165. 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
  166. 4.19042C11.8709 1.20655 7.03313 1.20655 4.04926 4.19042Z
  167. </Path.Data>
  168. </Path>
  169. </Button.Content>
  170. <Button.ToolTip>
  171. <ToolTip Content="Search"></ToolTip>
  172. </Button.ToolTip>
  173. </Button>
  174. <ToggleButton BorderThickness="0" Width="40" Height="40" Style="{StaticResource ToggleButtonStyle}" Background="Transparent" Visibility="Collapsed">
  175. <ToggleButton.Content>
  176. <Path Fill="#43474D" Width="30" Height="30">
  177. <Path.Data>
  178. 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
  179. </Path.Data>
  180. </Path>
  181. </ToggleButton.Content>
  182. </ToggleButton>
  183. <ToggleButton x:Name="RightPanelButton" BorderThickness="0" Width="40" Height="40" Style="{StaticResource ToggleButtonStyle}" Background="Transparent" Click="RightPanelButton_Click">
  184. <ToggleButton.Content>
  185. <Path Fill="#43474D" Width="30" Height="30">
  186. <Path.Data>
  187. M7.5 8.5H22.5V12.25H17H7.5V8.5ZM17.75 13.75H22.5V21.5H17.75V13.75ZM16.25 21.5V13.75H7.5V21.5H16.25ZM22.5 7H24V8.5V21.5V23H22.5H7.5H6V21.5V8.5V7H7.5H22.5Z
  188. </Path.Data>
  189. </Path>
  190. </ToggleButton.Content>
  191. <ToggleButton.ToolTip>
  192. <ToolTip Content="Properties"></ToolTip>
  193. </ToggleButton.ToolTip>
  194. </ToggleButton>
  195. <ToggleButton Name="ViewSettingBtn" BorderThickness="0" Width="40" Height="40" Style="{StaticResource ToggleButtonStyle}" Background="Transparent" Click="ViewSettingBtn_Click">
  196. <ToggleButton.Content>
  197. <Path Stroke="#43474D" VerticalAlignment="Center" StrokeThickness="2">
  198. <Path.Data>
  199. <CombinedGeometry GeometryCombineMode="Exclude">
  200. <CombinedGeometry.Geometry1>
  201. 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
  202. </CombinedGeometry.Geometry1>
  203. <CombinedGeometry.Geometry2>
  204. <EllipseGeometry Center="10,10" RadiusX="2" RadiusY="2"/>
  205. </CombinedGeometry.Geometry2>
  206. </CombinedGeometry>
  207. </Path.Data>
  208. </Path>
  209. </ToggleButton.Content>
  210. <ToggleButton.ToolTip>
  211. <ToolTip Content="Page Display"></ToolTip>
  212. </ToggleButton.ToolTip>
  213. </ToggleButton>
  214. <Button BorderThickness="0" Width="40" Height="40" Style="{StaticResource LightButtonStyle}" Background="Transparent" Click="PageInfoBtn_Click">
  215. <Button.Content>
  216. <Path Fill="#43474D" VerticalAlignment="Center">
  217. <Path.Data>
  218. 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
  219. 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
  220. 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
  221. 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
  222. 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
  223. 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
  224. </Path.Data>
  225. </Path>
  226. </Button.Content>
  227. <Button.ToolTip>
  228. <ToolTip Content="Document Info"></ToolTip>
  229. </Button.ToolTip>
  230. </Button>
  231. </StackPanel>
  232. </Grid>
  233. <Grid Name="BodyGrid" Grid.Row="1">
  234. <Grid.ColumnDefinitions>
  235. <ColumnDefinition Width="0"></ColumnDefinition>
  236. <ColumnDefinition Width="0"></ColumnDefinition>
  237. <ColumnDefinition Width="*"></ColumnDefinition>
  238. <ColumnDefinition Width="auto"></ColumnDefinition>
  239. </Grid.ColumnDefinitions>
  240. <Grid.RowDefinitions>
  241. <RowDefinition Height="auto"/>
  242. <RowDefinition Height="*"/>
  243. </Grid.RowDefinitions>
  244. <cpdftools:CPDFBOTABarControl Grid.Row="1" Visibility="Collapsed" Name="BotaSideTool"/>
  245. <GridSplitter Name="Splitter" Grid.Row="1" Grid.Column="1" Width="15" ResizeBehavior="PreviousAndNext" Visibility="Collapsed">
  246. <GridSplitter.Template>
  247. <ControlTemplate TargetType="{x:Type GridSplitter}">
  248. <Border BorderThickness="{TemplateBinding Border.BorderThickness}"
  249. BorderBrush="{TemplateBinding Border.BorderBrush}"
  250. Background="{TemplateBinding Panel.Background}" >
  251. <Path Fill="Gray" VerticalAlignment="Center">
  252. <Path.Data>
  253. M15 3.75H1V2.25H15V3.75ZM15 8.75H1V7.25H15V8.75ZM1 13.75H15V12.25H1V13.75Z
  254. </Path.Data>
  255. </Path>
  256. </Border>
  257. </ControlTemplate>
  258. </GridSplitter.Template>
  259. </GridSplitter>
  260. <Grid Grid.Column="2" Grid.Row="1" >
  261. <Grid.RowDefinitions>
  262. <RowDefinition Height="auto"></RowDefinition>
  263. <RowDefinition Height="*"></RowDefinition>
  264. </Grid.RowDefinitions>
  265. <Border Grid.Row="1" x:Name="PDFGrid" Background="#CECECE" Grid.ColumnSpan="2"></Border>
  266. <Border x:Name="ToolBarContainer" Height="45" Visibility="Collapsed" BorderThickness="1" BorderBrush="#1A000000" Background="#F2F3F5" Grid.ColumnSpan="2">
  267. <cpdftools:CPDFPageEditBarControl x:Name="CPDFPageEditBarControl" Grid.ColumnSpan="4" Height="44"/>
  268. </Border>
  269. <cpdfcommon:PageNumberControl Grid.Row="1" Name="FloatPageTool" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,0,0,20" Grid.Column="1"></cpdfcommon:PageNumberControl>
  270. <Border Name="PopupBorder" Background="#A0000000" Visibility="Collapsed" Grid.Row="1">
  271. <Grid>
  272. <Grid Name="FileInfoUI" Width="422" Height="680" HorizontalAlignment="Center" VerticalAlignment="Center" Background="White" Visibility="Collapsed">
  273. <Grid.ColumnDefinitions>
  274. <ColumnDefinition Width="*"></ColumnDefinition>
  275. <ColumnDefinition Width="*"></ColumnDefinition>
  276. </Grid.ColumnDefinitions>
  277. <Grid.RowDefinitions>
  278. <RowDefinition Height="auto"></RowDefinition>
  279. <RowDefinition Height="*"></RowDefinition>
  280. </Grid.RowDefinitions>
  281. <TextBlock Text="{Binding Converter={StaticResource DocInfoResourceConverter},ConverterParameter=Title_DocInfo}" Height="20" FontSize="14" LineHeight="16" Margin="12,6,0,0" HorizontalAlignment="Left"></TextBlock>
  282. <Button Grid.Column="1" Width="16" Height="16" HorizontalAlignment="Right" Margin="0,8,8,0" BorderThickness="0" Click="FileInfoCloseBtn_Click">
  283. <Button.Content>
  284. <Path Fill="Black">
  285. <Path.Data>
  286. M6.69495 6L11.5 1.19495L10.805 0.5L6 5.30505L1.19495 0.5L0.5 1.19495L5.30505 6L0.5 10.805L1.19495 11.5L6 6.69495L10.805 11.5L11.5 10.805L6.69495 6Z
  287. </Path.Data>
  288. </Path>
  289. </Button.Content>
  290. </Button>
  291. <cpdftools:CPDFInfoControl Grid.Row="1" Margin="25,10,25,0" Grid.ColumnSpan="2" Name="FileInfoControl"></cpdftools:CPDFInfoControl>
  292. </Grid>
  293. <cpdfcommon:PasswordDialog x:Name="PasswordUI" Visibility="Collapsed"></cpdfcommon:PasswordDialog>
  294. </Grid>
  295. </Border>
  296. </Grid>
  297. <Border Grid.Row="1" Name="PropertyContainer" Grid.Column="3" Visibility="Hidden"></Border>
  298. </Grid>
  299. </Grid>
  300. </Grid>
  301. </Window>