1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using PDF_Office.Model;
- using PDF_Office.ViewModels.Tools;
- using Prism.Mvvm;
- using Prism.Regions;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.ViewModels.PropertyPanel.AnnotPanel
- {
- public class MultiSelectAnnotPropertyViewModel : BindableBase, INavigationAware
- {
- private AnnotPropertyPanel PropertyPanel;
- public MultiSelectAnnotPropertyViewModel()
- {
- }
- public bool IsNavigationTarget(NavigationContext navigationContext)
- {
- return true;
- }
- public void OnNavigatedFrom(NavigationContext navigationContext)
- {
- }
- public void OnNavigatedTo(NavigationContext navigationContext)
- {
- navigationContext.Parameters.TryGetValue<AnnotPropertyPanel>(ParameterNames.PropertyPanelContentViewModel, out PropertyPanel);
-
- }
- }
- }
|