示例#1
0
        private OogSettings(ThumbnailSettings thumbnailSettings, FullScreenViewerSettings fullScreenViewerSettings, Rectangle windowStartup, IOogTreeNodeComparer treeNodeComparer)
        {
            this.thumbnailSettings = thumbnailSettings;
              this.fullScreenViewerSettings = fullScreenViewerSettings;

              jumpPath = new Dictionary<string, string>();
              this.windowStartup = windowStartup;
              treeNodeComparer = new OogTreeNodeSeparateNaturalNumberComparer();
        }
示例#2
0
 public static Thumbnail Create(string name, ThumbnailSettings settings)
 {
     Thumbnail thumbnail = new Thumbnail();
       thumbnail.Name = name;
       thumbnail.BackColor = settings.BackColor;
       return thumbnail;
 }
示例#3
0
 private OogSettings(ThumbnailSettings thumbnailSettings, FullScreenViewerSettings fullScreenViewerSettings, Rectangle windowStartup)
     : this(thumbnailSettings, fullScreenViewerSettings, windowStartup, DefaultTreeNodeComparer)
 {
 }