12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using ComPDFKitViewer.AnnotEvent;
- using Prism.Mvvm;
- using Prism.Regions;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.ViewModels.BOTA
- {
- public class AnnotationContentViewModel : BindableBase, INavigationAware
- {
- private ObservableCollection<AnnotHandlerEventArgs> annotationListItems;
- public ObservableCollection<AnnotHandlerEventArgs> AnnotationListItems
- {
- get { return annotationListItems; }
- set
- {
- SetProperty(ref annotationListItems, value);
- }
- }
- public AnnotationContentViewModel()
- {
- }
- public bool IsNavigationTarget(NavigationContext navigationContext)
- {
- return true;
- }
- public void OnNavigatedFrom(NavigationContext navigationContext)
- {
- }
- public void OnNavigatedTo(NavigationContext navigationContext)
- {
- }
- }
- }
|