TextEditPropertyViewModel.cs 670 B

1234567891011121314151617181920212223242526272829303132
  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. public class TextEditPropertyViewModel : BindableBase, INavigationAware
  11. {
  12. public TextEditPropertyViewModel()
  13. {
  14. }
  15. public void OnNavigatedTo(NavigationContext navigationContext)
  16. {
  17. }
  18. public bool IsNavigationTarget(NavigationContext navigationContext)
  19. {
  20. return true;
  21. }
  22. public void OnNavigatedFrom(NavigationContext navigationContext)
  23. {
  24. }
  25. }
  26. }