123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- using ComPDFKitViewer.PdfViewer;
- using PDF_Office.EventAggregators;
- using PDF_Office.Model;
- using Prism.Commands;
- using Prism.Events;
- using Prism.Mvvm;
- using Prism.Regions;
- using Prism.Services.Dialogs;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Security.Cryptography.X509Certificates;
- namespace PDF_Office.ViewModels.Tools
- {
- public class ToolsBarContentViewModel : BindableBase,INavigationAware
- {
- private CPDFViewer PDFViewer;
- private ViewContentViewModel viewContentViewModel;
- public IDialogService dialogs;
- public IEventAggregator eventAggregator;
- public string unicode = null;
- /// <summary>
- /// 是否是第一次加载
- /// </summary>
- private bool isFirstLoad = true;
- public DelegateCommand CompressCommand { get; set; }
- public DelegateCommand SetPasswordCommand { get; set; }
- public DelegateCommand CancelPasswordCommand { get; set; }
- public DelegateCommand<object> SetEditToolsCommand { get; set; }
- public DelegateCommand SetWatermarkCommand { get; set; }
- public ToolsBarContentViewModel(IDialogService dialogService, IEventAggregator eventAggregator)
- {
- dialogs= dialogService;
- this.eventAggregator= eventAggregator;
- unicode = App.mainWindowViewModel.SelectedItem.Unicode;
- CompressCommand = new DelegateCommand(OpenCompressDialog);
- SetPasswordCommand = new DelegateCommand(OpenSetPasswordDialog);
- CancelPasswordCommand = new DelegateCommand(OpenCancelPasswordDialog);
- SetEditToolsCommand = new DelegateCommand<object>(SetEditTools);
- }
- private void SetEditTools(object e)
- {
- var args = e as System.Windows.Controls.Button;
- if (args != null)
- {
- this.eventAggregator.GetEvent<EnterSelectedEditToolEvent>().Publish(new StringWithUnicode() { Unicode=unicode,EditToolsContentName=args.Name}) ;
- }
- }
- private void OpenCompressDialog()
- {
- DialogParameters value = new DialogParameters();
- value.Add(ParameterNames.PDFViewer, PDFViewer);
- dialogs.ShowDialog(DialogNames.CompressDialog, value, e => { });
- }
- private void OpenSetPasswordDialog()
- {
- DialogParameters value = new DialogParameters();
- value.Add(ParameterNames.PDFDocument, PDFViewer.Document);
- dialogs.ShowDialog(DialogNames.SetPasswordDialog, value, e => { });
- }
- private void OpenCancelPasswordDialog()
- {
- DialogParameters value = new DialogParameters();
- value.Add(ParameterNames.PDFDocument, PDFViewer.Document);
- dialogs.ShowDialog(DialogNames.DeleteSafetySettingsDialog, value, e => { });
- }
- public bool IsNavigationTarget(NavigationContext navigationContext)
- {
- return true;
- }
- public void OnNavigatedFrom(NavigationContext navigationContext)
- {
- }
- public void OnNavigatedTo(NavigationContext navigationContext)
- {
- navigationContext.Parameters.TryGetValue<ViewContentViewModel>(ParameterNames.ViewContentViewModel, out viewContentViewModel);
- navigationContext.Parameters.TryGetValue<CPDFViewer>(ParameterNames.PDFViewer, out PDFViewer);
- if (PDFViewer != null)
- {
- isFirstLoad = false;
- }
- }
- }
- }
|