SplitScreenViewViewModel.cs 726 B

12345678910111213141516171819202122232425262728
  1. using Prism.Mvvm;
  2. using Prism.Regions;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace PDF_Office.ViewModels.PropertyPanel
  9. {
  10. internal class SplitScreenViewViewModel : BindableBase, INavigationAware
  11. {
  12. public bool IsNavigationTarget(NavigationContext navigationContext)
  13. {
  14. throw new NotImplementedException();
  15. }
  16. public void OnNavigatedFrom(NavigationContext navigationContext)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. public void OnNavigatedTo(NavigationContext navigationContext)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. }
  25. }