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;
-
- public Color LastFillBrushColor = Brushes.White.Color;
- public bool IsGuidPDF { get; set; } = false;
-
-
-
- public string BOTASelectedTab = "";
-
- public int BOTASelectedInex = 0;
-
-
-
- public bool IsBOTAOpen = false;
- }
- }
|