123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- using Prism.Mvvm;
- using Prism.Regions;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using ComPDFKitViewer.PdfViewer;
- using PDF_Office.Model;
- using Prism.Commands;
- using System.Windows.Controls;
- using DryIoc;
- using Prism.Services.Dialogs;
- using PDF_Office.Views.PageEdit;
- using PDF_Office.Properties;
- using PDF_Office.Helper;
- namespace PDF_Office.ViewModels.BOTA
- {
- public class BOTAContentViewModel : BindableBase, INavigationAware
- {
- private CPDFViewer pdfViewer { get; set; }
- private IRegionManager regions { get; set; }
- private IDialogService dialogs { get; set; }
- public ViewContentViewModel viewContentViewModel { get; set; }
- private Dictionary<string, string> viewNameByTabItem;
- private string botaContentRegionName;
- public string BOTAContentRegionName
- {
- get { return botaContentRegionName; }
- set
- {
- SetProperty(ref botaContentRegionName, value);
- }
- }
- private int selectedIndex;
- public int SelectedIndex
- {
- get { return selectedIndex; }
- set
- {
- SetProperty(ref selectedIndex, value);
- }
- }
- public string CurrentBar = "";
- public DelegateCommand<object> TabControlSelectionChangedCommand { get; set; }
- public BOTAContentViewModel(IRegionManager regionManager, IDialogService dialogService)
- {
- regions = regionManager;
- dialogs = dialogService;
- BOTAContentRegionName = Guid.NewGuid().ToString();
- TabControlSelectionChangedCommand = new DelegateCommand<object>(TabControlSelectionChangedEvent);
- viewNameByTabItem = new Dictionary<string, string>();
- InitDictionartViewNameByTabItem(ref viewNameByTabItem);
-
- }
- private void TabControlSelectionChangedEvent(object e)
- {
- var args = e as SelectionChangedEventArgs;
- if (args != null&&args.AddedItems.Count>0)
- {
- if (!string.IsNullOrEmpty((args.AddedItems[0] as TabItem).Name))
- {
- EnterSelectedBar((args.AddedItems[0] as TabItem).Name);
- viewContentViewModel.OpenBOTA = true;
- }
- }
- }
- /// <summary>
- /// 初始化名称-视图字典
- /// </summary>
- private void InitDictionartViewNameByTabItem(ref Dictionary<string, string> viewNameByTabItem)
- {
- //绑定tabitem名字和对应的View控件名称
- viewNameByTabItem.Add("TabItemThumbnail", "PageEditContent");
- viewNameByTabItem.Add("TabItemOutLine", "OutLineControl");
- viewNameByTabItem.Add("TabItemBookMark", "BookmarkContent");
- viewNameByTabItem.Add("TabItemAnnotation", "AnnotationContent");
- viewNameByTabItem.Add("TabItemSearch", "SearchContent");
- viewNameByTabItem.Add("TabItemForm", "");
- viewNameByTabItem.Add("TabItemSign", "");
- }
- /// <summary>
- /// 导航至目标TabItem
- /// </summary>
- /// <param name="currentBar"></param>
- private void EnterSelectedBar(string currentBar)
- {
- CurrentBar = currentBar;
- NavigationParameters param = new NavigationParameters();
- param.Add(ParameterNames.PDFViewer, pdfViewer);
- param.Add(ParameterNames.ViewContentViewModel, viewContentViewModel);
- if (currentBar == "TabItemThumbnail")
- {
- param.Add(ParameterNames.BOTAThumb, true);
- }
- regions.RequestNavigate(BOTAContentRegionName, viewNameByTabItem[currentBar], param);
- var info = SettingHelper.GetFileInfo(pdfViewer.Document.FilePath);
- if (info != null)
- {
- info.BOTASelectedTab = currentBar;
- info.BOTASelectedInex = SelectedIndex;
- SettingHelper.SetFileInfo(info);
- }
- }
- #region Navigate
- public bool IsNavigationTarget(NavigationContext navigationContext)
- {
- return true;
- }
- public void OnNavigatedFrom(NavigationContext navigationContext)
- {
- }
- public void OnNavigatedTo(NavigationContext navigationContext)
- {
- var contentViewModel = navigationContext.Parameters[ParameterNames.ViewContentViewModel] as ViewContentViewModel;
- if (contentViewModel != null)
- {
- viewContentViewModel = contentViewModel;
- }
- var pdfview = navigationContext.Parameters[ParameterNames.PDFViewer] as CPDFViewer;
- if (pdfview != null)
- {
- pdfViewer = pdfview;
- }
- //大纲和文档同时打开
- if (Settings.Default.AppProperties.InitialVIew.ShowOutLine && pdfViewer.Document.GetOutlineList().Count > 0)
- {
- SelectedIndex = 2;
- EnterSelectedBar("TabItemOutLine");
- viewContentViewModel.OpenBOTA = true;
- }
- //记录上一次BOTA展开情况
- if(Settings.Default.AppProperties.InitialVIew.RememberBOTA)
- {
- var info = SettingHelper.GetFileInfo(pdfview.Document.FilePath);
- SelectedIndex = info.BOTASelectedInex;
- EnterSelectedBar(info.BOTASelectedTab);
- viewContentViewModel.OpenBOTA = true;
- }
- }
- #endregion Navigate
- }
- }
|