123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using ComPDFKitViewer;
- using System;
- using System.Collections.Generic;
- using System.Windows.Media;
- namespace PDFSettings
- {
- public class RecentOpenFiles : List<OpenFileInfo>
- {
-
- }
- public class OpenFileInfo
- {
- public string FileName { get; set; } = "";
- public string FilePath { get; set; } = "";
- public DateTime LastOpenTime { get; set; } = DateTime.Now;
- public string ThumbImgPath = "";
- public int LastPageIndex = 0;
- public double LastZoom = 1;
- public ViewMode LastViewMode = ViewMode.SingleContinuous;
- public FitMode LastFitMode = FitMode.FitFree;
- public SplitMode LastSplitMode = SplitMode.None;
- public bool ShowHighLightLink = true;
- public bool LastPageSpace = true;
- public DrawModes LastDrawMode = DrawModes.Draw_Mode_Normal;
- public uint LastFillColor = 0XFFFFFFFF;
- //用于记录显示的Color
- public Color LastFillBrushColor = Brushes.White.Color;
- public bool IsGuidPDF { get; set; } = false;
- /// <summary>
- /// 记录展开的BOTA的选项
- /// </summary>
- public string BOTASelectedTab = "";
- //记录展开的BOTA的索引
- public int BOTASelectedInex = 0;
- /// <summary>
- /// 记录本次BOTA的展开状态
- /// </summary>
- public bool IsBOTAOpen = false;
- }
- }
|