12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Prism.Services.Dialogs;
- using PDF_Office.Model.PageEdit;
- using Prism.Commands;
- using PDF_Office.Model;
- namespace PDF_Office.ViewModels.Dialog.PageEditDialogs
- {
- public class ExtractDialogViewModel:BindableBase,IDialogAware
- {
- public string Title => "";
- public event Action<IDialogResult> RequestClose;
- public DelegateCommand CancelCommand { get; set; }
- public DelegateCommand ExtractCommnad { get; set; }
- private ExtractModel model;
- public ExtractModel Model
- {
- get { return model; }
- set
- {
- SetProperty(ref model, value);
- }
- }
- public ExtractDialogViewModel()
- {
- Model = new ExtractModel();
- CancelCommand = new DelegateCommand(cancel);
- ExtractCommnad = new DelegateCommand(extract);
- }
- private void cancel()
- {
- RequestClose.Invoke(new DialogResult(ButtonResult.Cancel));
- }
- private void extract()
- {
- DialogParameters valuePairs = new DialogParameters();
- valuePairs.Add(ParameterNames.DataModel,Model);
- RequestClose.Invoke(new DialogResult(ButtonResult.OK,valuePairs));
- }
- public bool CanCloseDialog()
- {
- return true;
- }
- public void OnDialogClosed()
- {
- return;
- }
- public void OnDialogOpened(IDialogParameters parameters)
- {
-
- }
- }
- }
|