AnnotationContent.xaml 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <UserControl
  2. x:Class="PDF_Master.Views.BOTA.AnnotationContent"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:bota="clr-namespace:PDF_Master.ViewModels.BOTA"
  6. xmlns:convert="clr-namespace:PDF_Master.DataConvert"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:data="clr-namespace:ComPDFKit.PDFDocument;assembly=ComPDFKit.Desk"
  9. xmlns:helper="clr-namespace:PDF_Master.Helper"
  10. xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
  11. xmlns:local="clr-namespace:PDF_Master.Views.BOTA"
  12. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  13. xmlns:prism="http://prismlibrary.com/"
  14. xmlns:property="clr-namespace:PDF_Master.Properties"
  15. d:DataContext="{d:DesignInstance Type=bota:AnnotationContentViewModel}"
  16. d:DesignHeight="450"
  17. d:DesignWidth="300"
  18. prism:ViewModelLocator.AutoWireViewModel="True"
  19. mc:Ignorable="d">
  20. <UserControl.Resources>
  21. <ResourceDictionary>
  22. <ResourceDictionary.MergedDictionaries>
  23. <ResourceDictionary Source="pack://application:,,,/Styles/ButtonStyle.xaml" />
  24. <ResourceDictionary Source="pack://application:,,,/Styles/ComboxStyle.xaml" />
  25. <ResourceDictionary Source="pack://application:,,,/Styles/ListViewStyle.xaml" />
  26. <ResourceDictionary Source="pack://application:,,,/Styles/ExpanderStyle.xaml" />
  27. </ResourceDictionary.MergedDictionaries>
  28. <DataTemplate x:Key="AnnotationListItemTemplate">
  29. <local:AnnotationListItem />
  30. </DataTemplate>
  31. <ContextMenu x:Key="ContextMenu" Loaded="ContextMenu_Loaded">
  32. <MenuItem Name="MenuItemCopyText" Click="MenuItemCopyText_Click" />
  33. <MenuItem />
  34. <MenuItem />
  35. <MenuItem Name="MenuItemDelete" Click="MenuItemDelete_Click" />
  36. </ContextMenu>
  37. <SolidColorBrush x:Key="path.fill" Color="#616469" />
  38. <convert:IntToBooleanConvert x:Key="IntToBooleanConvert" />
  39. <convert:AnnotateFontSizeConverter x:Key="AnnotateFontSizeConverter" />
  40. <convert:GroupHeaderConverter x:Key="GroupHeaderConverter" />
  41. <convert:UnVisibleToBoolConvert x:Key="UnvisibleToBool" />
  42. </ResourceDictionary>
  43. </UserControl.Resources>
  44. <Grid PreviewMouseLeftButtonDown="Grid_PreviewMouseLeftButtonDown">
  45. <Grid.RowDefinitions>
  46. <RowDefinition Height="48" />
  47. <RowDefinition Height="*" />
  48. </Grid.RowDefinitions>
  49. <Grid Grid.Row="1">
  50. <Grid.ColumnDefinitions>
  51. <ColumnDefinition Width="29*" />
  52. <ColumnDefinition />
  53. </Grid.ColumnDefinitions>
  54. <ListBox
  55. x:Name="AnnotationList"
  56. Grid.ColumnSpan="3"
  57. HorizontalContentAlignment="Stretch"
  58. Background="{StaticResource color.sys.layout.mg}"
  59. BorderThickness="0"
  60. FocusVisualStyle="{x:Null}"
  61. ItemTemplate="{StaticResource AnnotationListItemTemplate}"
  62. ItemsSource="{Binding AnnotationListItems}"
  63. MouseDown="ListBox_MouseDown"
  64. PreviewMouseLeftButtonDown="AnnotationList_PreviewMouseLeftButtonDown"
  65. ScrollViewer.HorizontalScrollBarVisibility="Disabled"
  66. SelectionChanged="AnnotationList_SelectionChanged"
  67. SelectionMode="Extended">
  68. <ListBox.ItemContainerStyle>
  69. <Style TargetType="ListBoxItem">
  70. <Setter Property="HorizontalContentAlignment" Value="Stretch" />
  71. <EventSetter Event="PreviewMouseDown" Handler="ListBoxItem_PreviewMouseDown" />
  72. <EventSetter Event="PreviewMouseDoubleClick" Handler="ListBoxItem_PreviewMouseDoubleClick" />
  73. <Setter Property="Template" Value="{StaticResource AnnotationListItemStyle}" />
  74. <Setter Property="Padding" Value="0" />
  75. <Setter Property="Margin" Value="0,-1,0,-1" />
  76. <Setter Property="ContextMenu" Value="{StaticResource ContextMenu}" />
  77. </Style>
  78. </ListBox.ItemContainerStyle>
  79. <ListBox.GroupStyle>
  80. <GroupStyle>
  81. <GroupStyle.ContainerStyle>
  82. <Style TargetType="{x:Type GroupItem}">
  83. <Setter Property="Background" Value="{StaticResource color.sys.layout.mg}" />
  84. <Setter Property="Template">
  85. <Setter.Value>
  86. <ControlTemplate TargetType="{x:Type GroupItem}">
  87. <Expander
  88. Name="Expander"
  89. Margin="-1,-1,-1,-1"
  90. HorizontalAlignment="Stretch"
  91. HorizontalContentAlignment="Stretch"
  92. VerticalContentAlignment="Stretch"
  93. Style="{StaticResource GropExpanderHeader}">
  94. <Expander.Header>
  95. <Grid
  96. Height="25"
  97. HorizontalAlignment="Stretch"
  98. VerticalAlignment="Stretch">
  99. <Grid.RowDefinitions>
  100. <RowDefinition />
  101. </Grid.RowDefinitions>
  102. <TextBlock
  103. Name="GroupTitle"
  104. Margin="10,0,0,0"
  105. VerticalAlignment="Center"
  106. FontFamily="Segoe UI Semibold"
  107. FontSize="14"
  108. FontWeight="SemiBold"
  109. Text="{Binding Name, Converter={StaticResource GroupHeaderConverter}}"
  110. TextAlignment="Left" />
  111. <!--<TextBlock
  112. Name="Count"
  113. Margin="0,0,8,0"
  114. HorizontalAlignment="Right"
  115. VerticalAlignment="Center"
  116. FontFamily="Segoe UI Semibold"
  117. FontSize="{Binding Source={x:Static property:Settings.Default}, Path=AnnotateFontSize, Converter={StaticResource AnnotateFontSizeConverter}}"
  118. FontWeight="SemiBold"
  119. Foreground="#FF666666"
  120. Text="{Binding ItemCount}"
  121. TextAlignment="Right" />-->
  122. </Grid>
  123. </Expander.Header>
  124. <!--<Expander.Content>
  125. <ItemsPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
  126. </Expander.Content>-->
  127. <ItemsPresenter />
  128. </Expander>
  129. </ControlTemplate>
  130. </Setter.Value>
  131. </Setter>
  132. </Style>
  133. </GroupStyle.ContainerStyle>
  134. </GroupStyle>
  135. </ListBox.GroupStyle>
  136. <!--<ListBox.ContextMenu>
  137. <ContextMenu DataContext="{Binding PlacementTarget.Tag, RelativeSource={RelativeSource Self}}" FontSize="14">
  138. <MenuItem
  139. Name="MenuItemCopyText"
  140. CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=ContextMenu}, Path=PlacementTarget.DataContext}"
  141. Header="复制文本" />
  142. <MenuItem
  143. Command="{Binding DataContext.EditPageIndexCommand, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
  144. CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=ContextMenu}, Path=PlacementTarget.DataContext}"
  145. Header="添加笔记" />
  146. <MenuItem CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=ContextMenu}, Path=PlacementTarget.DataContext}" Header="导出注释为XFDF格式 " />
  147. <MenuItem CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=ContextMenu}, Path=PlacementTarget.DataContext}" Header="删除" />
  148. </ContextMenu>
  149. </ListBox.ContextMenu>-->
  150. <i:Interaction.Triggers>
  151. <i:EventTrigger EventName="Loaded">
  152. <helper:AdvancedInvokeCommandAction
  153. Command="{Binding DataContext.LoadedCommand, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
  154. CommandParameter="{Binding ElementName=AnnotationList}"
  155. PassEventArgsToCommand="True" />
  156. </i:EventTrigger>
  157. </i:Interaction.Triggers>
  158. </ListBox>
  159. <StackPanel
  160. Name="EmptyPanel"
  161. Grid.ColumnSpan="2"
  162. VerticalAlignment="Center"
  163. Visibility="{Binding IsEmptyPanelVisibility}">
  164. <Image
  165. Width="128"
  166. Height="128"
  167. Source="pack://application:,,,/Resources/BOTA/empty_annotation.png" />
  168. <TextBlock
  169. Name="txtEmpty"
  170. Margin="0,12,0,0"
  171. FontFamily="Segoe UI"
  172. FontSize="16"
  173. Text="{Binding T_EmptyTitle}"
  174. TextAlignment="Center" />
  175. <TextBlock
  176. Name="txtEmpty2"
  177. Width="150"
  178. Margin="0,12,0,0"
  179. FontFamily="Segoe UI"
  180. FontSize="16"
  181. Foreground="#94989C"
  182. Text="{Binding T_EmptyContext}"
  183. TextAlignment="Center"
  184. TextWrapping="Wrap"
  185. Visibility="{Binding IsHideAnnotPanelVisibility}" />
  186. </StackPanel>
  187. <!--<StackPanel
  188. Name="HideAnnotPanel"
  189. Grid.ColumnSpan="2"
  190. VerticalAlignment="Center"
  191. Visibility="{Binding IsHideAnnotPanelVisibility}">
  192. <Image
  193. Width="128"
  194. Height="128"
  195. Source="pack://application:,,,/Resources/BOTA/HideAnnot.png" />
  196. <TextBlock
  197. Name="txtHideAnnot"
  198. Margin="0,12,0,0"
  199. FontFamily="Segoe UI"
  200. FontSize="16"
  201. Text="{Binding T_EmptyTitle}"
  202. TextAlignment="Center" />
  203. </StackPanel>-->
  204. </Grid>
  205. <Border BorderBrush="{StaticResource color.field.border.norm}" BorderThickness="0,0,0,1">
  206. <Grid
  207. Name="TopGrid"
  208. Grid.Row="0"
  209. Background="{StaticResource color.sys.layout.mg}">
  210. <TextBlock
  211. x:Name="Title"
  212. Margin="16,0,0,0"
  213. VerticalAlignment="Center"
  214. FontFamily="Segoe UI"
  215. FontSize="14"
  216. FontWeight="SemiBold"
  217. Foreground="{StaticResource color.sys.text.neutral.lv1}"
  218. Text="{Binding T_Title}"
  219. TextAlignment="Left" />
  220. <StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
  221. <Grid Width="32" Height="32">
  222. <Button
  223. x:Name="BtnScreen"
  224. Width="32"
  225. Height="32"
  226. HorizontalAlignment="Right"
  227. Command="{Binding ScreenCommand}"
  228. CommandParameter="{Binding ElementName=BtnScreen}"
  229. Focusable="False"
  230. IsEnabled="{Binding ElementName=AnnotationList, Path=Items.Count, Converter={StaticResource IntToBooleanConvert}}"
  231. Style="{StaticResource PageEditToolBtn}">
  232. <Path
  233. Width="32"
  234. Height="32"
  235. Data="M15.5 14.7629V21.3136L16.5 21.7367V14.7629L20.4595 11.8299C20.485 11.8111 20.5 11.7813 20.5 11.7496V10.5H11.5V11.7496C11.5 11.7813 11.515 11.8111 11.5405 11.83L15.5 14.7629ZM15.0727 21.1328C15.0724 21.1327 15.0731 21.133 15.0727 21.1328V21.1328ZM10 9.8C10 9.35817 10.3582 9 10.8 9H21.2C21.6418 9 22 9.35817 22 9.8V11.7496C22 12.2566 21.7597 12.7335 21.3524 13.0353L18 15.5185V22.7929C18 23.3656 17.4158 23.7528 16.8883 23.5297L14.4883 22.5143C14.1923 22.3891 14 22.0989 14 21.7775V15.5185L10.6476 13.0353C10.2403 12.7335 10 12.2566 10 11.7496V9.8Z"
  236. Fill="{StaticResource path.fill}" />
  237. </Button>
  238. <Ellipse
  239. Width="6"
  240. Height="6"
  241. Margin="0,8,8,0"
  242. HorizontalAlignment="Right"
  243. VerticalAlignment="Top"
  244. Fill="#1770F4"
  245. Visibility="{Binding Screen, Mode=TwoWay}" />
  246. </Grid>
  247. <Button
  248. Name="BtnMore"
  249. Width="40"
  250. Margin="0,0,10,0"
  251. HorizontalAlignment="Right"
  252. Click="BtnMore_Click"
  253. Initialized="BtnMore_Initialized"
  254. Style="{StaticResource PageEditToolBtn}">
  255. <Path Data="M3 2C3 2.82843 2.32843 3.5 1.5 3.5C0.671573 3.5 0 2.82843 0 2C0 1.17157 0.671573 0.5 1.5 0.5C2.32843 0.5 3 1.17157 3 2ZM8.3999 2C8.3999 2.82843 7.72833 3.5 6.8999 3.5C6.07148 3.5 5.3999 2.82843 5.3999 2C5.3999 1.17157 6.07148 0.5 6.8999 0.5C7.72833 0.5 8.3999 1.17157 8.3999 2ZM12.5 3.5C13.3284 3.5 14 2.82843 14 2C14 1.17157 13.3284 0.5 12.5 0.5C11.6716 0.5 11 1.17157 11 2C11 2.82843 11.6716 3.5 12.5 3.5Z" Fill="{StaticResource path.fill}">
  256. <Path.RenderTransform>
  257. <TransformGroup>
  258. <TranslateTransform Y="-3" />
  259. </TransformGroup>
  260. </Path.RenderTransform>
  261. </Path>
  262. <Button.ContextMenu>
  263. <ContextMenu
  264. Name="MenuMore"
  265. Width="auto"
  266. Placement="Bottom">
  267. <!--<ContextMenu.ItemContainerStyle>
  268. <Style TargetType="MenuItem">
  269. <Setter Property="Padding" Value="-25,7,-35,7" />
  270. </Style>
  271. </ContextMenu.ItemContainerStyle>-->
  272. <MenuItem
  273. Name="MenuExpandAll"
  274. Width="auto"
  275. Click="MenuExpandAll_Click"
  276. Header="{Binding T_Expand}"
  277. IsEnabled="{Binding IsEmptyPanelVisibility, Converter={StaticResource UnvisibleToBool}}">
  278. <MenuItem.Icon>
  279. <Border Background="Transparent" />
  280. </MenuItem.Icon>
  281. </MenuItem>
  282. <MenuItem
  283. Name="MenuCollapseAll"
  284. Click="MenuCollapseAll_Click"
  285. Header="{Binding T_Collapse}"
  286. IsEnabled="{Binding IsEmptyPanelVisibility, Converter={StaticResource UnvisibleToBool}}" />
  287. <MenuItem Name="MenuSort" Visibility="Collapsed">
  288. <MenuItem.Header>
  289. <TextBlock Name="MenuSortText" Text="排序" />
  290. </MenuItem.Header>
  291. <MenuItem Name="MenuPageSort" Command="{Binding PageSortCommand}">
  292. <!--<MenuItem.Icon>
  293. <Path
  294. HorizontalAlignment="Center"
  295. VerticalAlignment="Center"
  296. Data="M10.807106,0.0999999046 L15.0999992,5.39289312 L15.0999992,15.8999991 L0.899999857,15.8999991 L0.899999857,0.0999999046 L10.807106,0.0999999046 Z M10.3929999,1.0999999 L1.89999986,1.0999999 L1.89999986,14.8989999 L14.0989999,14.8989999 L14.0989999,5.8059999 L10.3929999,1.0999999 Z M8,10.53125 C8.15885417,10.53125 8.29361979,10.5833333 8.40429688,10.6875 C8.51497396,10.7916667 8.5703125,10.9166667 8.5703125,11.0625 C8.5703125,11.2057292 8.51497396,11.328776 8.40429688,11.4316406 C8.29361979,11.5345052 8.15885417,11.5859375 8,11.5859375 C7.84375,11.5859375 7.7109375,11.5345052 7.6015625,11.4316406 C7.4921875,11.328776 7.4375,11.2057292 7.4375,11.0625 C7.4375,10.9166667 7.4921875,10.7916667 7.6015625,10.6875 C7.7109375,10.5833333 7.84375,10.53125 8,10.53125 Z M6.21875,5.7734375 L6.21875,11.5 L5.3125,11.5 L5.3125,6.8828125 C5.1484375,7 4.97200521,7.09960938 4.78320312,7.18164062 C4.59440104,7.26367188 4.37890625,7.3359375 4.13671875,7.3984375 L4.13671875,7.3984375 L4.13671875,6.625 C4.28776042,6.57552083 4.43359375,6.5234375 4.57421875,6.46875 C4.71484375,6.4140625 4.85351562,6.35286458 4.99023438,6.28515625 C5.12695312,6.21744792 5.26497396,6.14192708 5.40429688,6.05859375 C5.54361979,5.97526042 5.6875,5.88020833 5.8359375,5.7734375 L5.8359375,5.7734375 L6.21875,5.7734375 Z M11.3671875,5.7734375 L11.3671875,11.5 L10.4609375,11.5 L10.4609375,6.8828125 C10.296875,7 10.1204427,7.09960938 9.93164062,7.18164062 C9.74283854,7.26367188 9.52734375,7.3359375 9.28515625,7.3984375 L9.28515625,7.3984375 L9.28515625,6.625 C9.43619792,6.57552083 9.58203125,6.5234375 9.72265625,6.46875 C9.86328125,6.4140625 10.0019531,6.35286458 10.1386719,6.28515625 C10.2753906,6.21744792 10.4134115,6.14192708 10.5527344,6.05859375 C10.6920573,5.97526042 10.8359375,5.88020833 10.984375,5.7734375 L10.984375,5.7734375 L11.3671875,5.7734375 Z M8,7.44140625 C8.15885417,7.44140625 8.29361979,7.49348958 8.40429688,7.59765625 C8.51497396,7.70182292 8.5703125,7.82682292 8.5703125,7.97265625 C8.5703125,8.11588542 8.51497396,8.23893229 8.40429688,8.34179688 C8.29361979,8.44466146 8.15885417,8.49609375 8,8.49609375 C7.84375,8.49609375 7.7109375,8.44466146 7.6015625,8.34179688 C7.4921875,8.23893229 7.4375,8.11588542 7.4375,7.97265625 C7.4375,7.82682292 7.4921875,7.70182292 7.6015625,7.59765625 C7.7109375,7.49348958 7.84375,7.44140625 8,7.44140625 Z"
  297. Fill="Black" />
  298. </MenuItem.Icon>-->
  299. <MenuItem.Header>
  300. <TextBlock Name="MenuPageSortText" Text="按页面排序" />
  301. </MenuItem.Header>
  302. </MenuItem>
  303. <MenuItem
  304. Name="MenuTimeAscending"
  305. Command="{Binding TimeAscendingCommand}"
  306. Visibility="Collapsed">
  307. <!--<MenuItem.Icon>
  308. <Path
  309. HorizontalAlignment="Center"
  310. VerticalAlignment="Center"
  311. Data="M10.807106,0.0999999046 L15.0999992,5.39289312 L15.0999992,15.8999991 L0.899999857,15.8999991 L0.899999857,0.0999999046 L10.807106,0.0999999046 Z M10.3929999,1.0999999 L1.89999986,1.0999999 L1.89999986,14.8989999 L14.0989999,14.8989999 L14.0989999,5.8059999 L10.3929999,1.0999999 Z M8,10.53125 C8.15885417,10.53125 8.29361979,10.5833333 8.40429688,10.6875 C8.51497396,10.7916667 8.5703125,10.9166667 8.5703125,11.0625 C8.5703125,11.2057292 8.51497396,11.328776 8.40429688,11.4316406 C8.29361979,11.5345052 8.15885417,11.5859375 8,11.5859375 C7.84375,11.5859375 7.7109375,11.5345052 7.6015625,11.4316406 C7.4921875,11.328776 7.4375,11.2057292 7.4375,11.0625 C7.4375,10.9166667 7.4921875,10.7916667 7.6015625,10.6875 C7.7109375,10.5833333 7.84375,10.53125 8,10.53125 Z M6.21875,5.7734375 L6.21875,11.5 L5.3125,11.5 L5.3125,6.8828125 C5.1484375,7 4.97200521,7.09960938 4.78320312,7.18164062 C4.59440104,7.26367188 4.37890625,7.3359375 4.13671875,7.3984375 L4.13671875,7.3984375 L4.13671875,6.625 C4.28776042,6.57552083 4.43359375,6.5234375 4.57421875,6.46875 C4.71484375,6.4140625 4.85351562,6.35286458 4.99023438,6.28515625 C5.12695312,6.21744792 5.26497396,6.14192708 5.40429688,6.05859375 C5.54361979,5.97526042 5.6875,5.88020833 5.8359375,5.7734375 L5.8359375,5.7734375 L6.21875,5.7734375 Z M11.3671875,5.7734375 L11.3671875,11.5 L10.4609375,11.5 L10.4609375,6.8828125 C10.296875,7 10.1204427,7.09960938 9.93164062,7.18164062 C9.74283854,7.26367188 9.52734375,7.3359375 9.28515625,7.3984375 L9.28515625,7.3984375 L9.28515625,6.625 C9.43619792,6.57552083 9.58203125,6.5234375 9.72265625,6.46875 C9.86328125,6.4140625 10.0019531,6.35286458 10.1386719,6.28515625 C10.2753906,6.21744792 10.4134115,6.14192708 10.5527344,6.05859375 C10.6920573,5.97526042 10.8359375,5.88020833 10.984375,5.7734375 L10.984375,5.7734375 L11.3671875,5.7734375 Z M8,7.44140625 C8.15885417,7.44140625 8.29361979,7.49348958 8.40429688,7.59765625 C8.51497396,7.70182292 8.5703125,7.82682292 8.5703125,7.97265625 C8.5703125,8.11588542 8.51497396,8.23893229 8.40429688,8.34179688 C8.29361979,8.44466146 8.15885417,8.49609375 8,8.49609375 C7.84375,8.49609375 7.7109375,8.44466146 7.6015625,8.34179688 C7.4921875,8.23893229 7.4375,8.11588542 7.4375,7.97265625 C7.4375,7.82682292 7.4921875,7.70182292 7.6015625,7.59765625 C7.7109375,7.49348958 7.84375,7.44140625 8,7.44140625 Z"
  312. Fill="Black" />
  313. </MenuItem.Icon>-->
  314. <MenuItem.Header>
  315. <TextBlock Name="MenuTimeAscendingText" Text="按时间正序排列" />
  316. </MenuItem.Header>
  317. </MenuItem>
  318. <MenuItem
  319. Name="MenuTimeDescending"
  320. Command="{Binding TimeDescendingCommand}"
  321. Visibility="Collapsed">
  322. <!--<MenuItem.Icon>
  323. <Path
  324. HorizontalAlignment="Center"
  325. VerticalAlignment="Center"
  326. Data="M10.807106,0.0999999046 L15.0999992,5.39289312 L15.0999992,15.8999991 L0.899999857,15.8999991 L0.899999857,0.0999999046 L10.807106,0.0999999046 Z M10.3929999,1.0999999 L1.89999986,1.0999999 L1.89999986,14.8989999 L14.0989999,14.8989999 L14.0989999,5.8059999 L10.3929999,1.0999999 Z M8,10.53125 C8.15885417,10.53125 8.29361979,10.5833333 8.40429688,10.6875 C8.51497396,10.7916667 8.5703125,10.9166667 8.5703125,11.0625 C8.5703125,11.2057292 8.51497396,11.328776 8.40429688,11.4316406 C8.29361979,11.5345052 8.15885417,11.5859375 8,11.5859375 C7.84375,11.5859375 7.7109375,11.5345052 7.6015625,11.4316406 C7.4921875,11.328776 7.4375,11.2057292 7.4375,11.0625 C7.4375,10.9166667 7.4921875,10.7916667 7.6015625,10.6875 C7.7109375,10.5833333 7.84375,10.53125 8,10.53125 Z M6.21875,5.7734375 L6.21875,11.5 L5.3125,11.5 L5.3125,6.8828125 C5.1484375,7 4.97200521,7.09960938 4.78320312,7.18164062 C4.59440104,7.26367188 4.37890625,7.3359375 4.13671875,7.3984375 L4.13671875,7.3984375 L4.13671875,6.625 C4.28776042,6.57552083 4.43359375,6.5234375 4.57421875,6.46875 C4.71484375,6.4140625 4.85351562,6.35286458 4.99023438,6.28515625 C5.12695312,6.21744792 5.26497396,6.14192708 5.40429688,6.05859375 C5.54361979,5.97526042 5.6875,5.88020833 5.8359375,5.7734375 L5.8359375,5.7734375 L6.21875,5.7734375 Z M11.3671875,5.7734375 L11.3671875,11.5 L10.4609375,11.5 L10.4609375,6.8828125 C10.296875,7 10.1204427,7.09960938 9.93164062,7.18164062 C9.74283854,7.26367188 9.52734375,7.3359375 9.28515625,7.3984375 L9.28515625,7.3984375 L9.28515625,6.625 C9.43619792,6.57552083 9.58203125,6.5234375 9.72265625,6.46875 C9.86328125,6.4140625 10.0019531,6.35286458 10.1386719,6.28515625 C10.2753906,6.21744792 10.4134115,6.14192708 10.5527344,6.05859375 C10.6920573,5.97526042 10.8359375,5.88020833 10.984375,5.7734375 L10.984375,5.7734375 L11.3671875,5.7734375 Z M8,7.44140625 C8.15885417,7.44140625 8.29361979,7.49348958 8.40429688,7.59765625 C8.51497396,7.70182292 8.5703125,7.82682292 8.5703125,7.97265625 C8.5703125,8.11588542 8.51497396,8.23893229 8.40429688,8.34179688 C8.29361979,8.44466146 8.15885417,8.49609375 8,8.49609375 C7.84375,8.49609375 7.7109375,8.44466146 7.6015625,8.34179688 C7.4921875,8.23893229 7.4375,8.11588542 7.4375,7.97265625 C7.4375,7.82682292 7.4921875,7.70182292 7.6015625,7.59765625 C7.7109375,7.49348958 7.84375,7.44140625 8,7.44140625 Z"
  327. Fill="Black" />
  328. </MenuItem.Icon>-->
  329. <MenuItem.Header>
  330. <TextBlock Name="MenuTimeDescendingText" Text="按时间倒序排列" />
  331. </MenuItem.Header>
  332. </MenuItem>
  333. </MenuItem>
  334. <MenuItem
  335. Name="MenuImport"
  336. Command="{Binding ImportCommentsCommand}"
  337. Header="{Binding T_Import}" />
  338. <MenuItem
  339. Name="MenuExport"
  340. Command="{Binding ExportCommentsCommand}"
  341. Header="{Binding T_Export}" />
  342. <MenuItem
  343. Name="MenuDeleteAll"
  344. Command="{Binding DeleteAllCommand}"
  345. Header="{Binding T_DeleteAll}" />
  346. </ContextMenu>
  347. </Button.ContextMenu>
  348. </Button>
  349. </StackPanel>
  350. </Grid>
  351. </Border>
  352. </Grid>
  353. </UserControl>