HomePagePrinterModSizeContentViewModel.cs 698 B

1234567891011121314151617181920212223242526272829
  1. using Prism.Commands;
  2. using Prism.Mvvm;
  3. using Prism.Regions;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. namespace PDF_Office.ViewModels.Dialog.HomePageToolsDialogs.HomePagePrinter
  8. {
  9. public class HomePagePrinterModSizeContentViewModel : BindableBase, INavigationAware
  10. {
  11. public HomePagePrinterModSizeContentViewModel()
  12. {
  13. }
  14. public bool IsNavigationTarget(NavigationContext navigationContext)
  15. {
  16. return true;
  17. }
  18. public void OnNavigatedFrom(NavigationContext navigationContext)
  19. {
  20. }
  21. public void OnNavigatedTo(NavigationContext navigationContext)
  22. {
  23. }
  24. }
  25. }