using PDF_Master.Model; using Prism.Commands; 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.BOTA { public class AddBookmarkDialogViewModel : BindableBase, IDialogAware { //public string Title => ""; private string title; public string Title { get { return title; } set { SetProperty(ref title, value); } } public event Action RequestClose; private string bookmark; public string Bookmark { get { return bookmark; } set { SetProperty(ref bookmark, value); } } public DelegateCommand CancelCommand { get; set; } public DelegateCommand CreateCommnad { get; set; } public AddBookmarkDialogViewModel() { CancelCommand = new DelegateCommand(CancelEvent); CreateCommnad = new DelegateCommand(CreateEvent); } private void CreateEvent() { DialogParameters valuePairs = new DialogParameters(); valuePairs.Add(ParameterNames.Bookmark, Bookmark); RequestClose.Invoke(new DialogResult(ButtonResult.OK, valuePairs)); } private void CancelEvent() { RequestClose.Invoke(new DialogResult(ButtonResult.Cancel)); } public bool CanCloseDialog() { return true; } public void OnDialogClosed() { return; } public void OnDialogOpened(IDialogParameters parameters) { string mark; parameters.TryGetValue(ParameterNames.Bookmark, out mark); Bookmark = mark; string title; parameters.TryGetValue(ParameterNames.Title, out title); Title = title; return; } } }