123456789101112131415161718192021222324252627282930313233 |
- using Prism.Mvvm;
- using Prism.Services.Dialogs;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.ViewModels.Dialog.ServiceDialog
- {
- public class ChangeEmailDialogViewModel : BindableBase, IDialogAware
- {
- public string Title => throw new NotImplementedException();
- public event Action<IDialogResult> RequestClose;
- public bool CanCloseDialog()
- {
- return true;
- //throw new NotImplementedException();
- }
- public void OnDialogClosed()
- {
- //throw new NotImplementedException();
- }
- public void OnDialogOpened(IDialogParameters parameters)
- {
- //throw new NotImplementedException();
- }
- }
- }
|