ChangeEmailDialogViewModel.cs 815 B

123456789101112131415161718192021222324252627282930313233
  1. using Prism.Mvvm;
  2. using Prism.Services.Dialogs;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace PDF_Master.ViewModels.Dialog.ServiceDialog
  9. {
  10. public class ChangeEmailDialogViewModel : BindableBase, IDialogAware
  11. {
  12. public string Title => throw new NotImplementedException();
  13. public event Action<IDialogResult> RequestClose;
  14. public bool CanCloseDialog()
  15. {
  16. return true;
  17. //throw new NotImplementedException();
  18. }
  19. public void OnDialogClosed()
  20. {
  21. //throw new NotImplementedException();
  22. }
  23. public void OnDialogOpened(IDialogParameters parameters)
  24. {
  25. //throw new NotImplementedException();
  26. }
  27. }
  28. }