ViewContent.xaml.cs 749 B

123456789101112131415161718192021222324252627282930313233
  1. using ComPDFKitViewer.PdfViewer;
  2. using Microsoft.Win32;
  3. using PDF_Office.ViewModels;
  4. using Prism.Regions;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows;
  11. using System.Windows.Controls;
  12. using System.Windows.Data;
  13. using System.Windows.Documents;
  14. using System.Windows.Input;
  15. using System.Windows.Media;
  16. using System.Windows.Media.Imaging;
  17. using System.Windows.Navigation;
  18. using System.Windows.Shapes;
  19. namespace PDF_Office.Views
  20. {
  21. /// <summary>
  22. /// ViewContent.xaml 的交互逻辑
  23. /// </summary>
  24. public partial class ViewContent : UserControl
  25. {
  26. public ViewContent()
  27. {
  28. InitializeComponent();
  29. }
  30. }
  31. }