SnapshotEditMenu.xaml.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using ComPDFKitViewer.AnnotEvent;
  2. using ComPDFKitViewer.PdfViewer;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. using System.Windows.Controls;
  10. using System.Windows.Data;
  11. using System.Windows.Documents;
  12. using System.Windows.Input;
  13. using System.Windows.Media;
  14. using System.Windows.Media.Imaging;
  15. using System.Windows.Navigation;
  16. using System.Windows.Shapes;
  17. namespace PDF_Master.Views.PropertyPanel.AnnotPanel
  18. {
  19. /// <summary>
  20. /// SnapshotEditMenu.xaml 的交互逻辑
  21. /// </summary>
  22. public partial class SnapshotEditMenu : UserControl
  23. {
  24. public SnapshotEditMenu()
  25. {
  26. InitializeComponent();
  27. }
  28. private void BtnSnapExport_Click(object sender, RoutedEventArgs e)
  29. {
  30. MenuExport.PlacementTarget = BtnSnapExport;
  31. MenuExport.IsOpen = true;
  32. }
  33. private void BtnSnapExport_Initialized(object sender, EventArgs e)
  34. {
  35. BtnSnapExport.ContextMenu = null;
  36. }
  37. }
  38. }