Example #1
0
        /// <summary>
        /// Class constructor
        /// </summary>
        public ExplorerSettingsModel()
        {
            this.mUserProfile = new ExplorerUserProfile();

            this.mRecentFolders = new List <string>();

            this.mFilterCollection = new List <FilterItemModel>();

            this.ShowFolders = this.ShowHiddenFiles = this.ShowIcons = true;

            this.mSpecialFolders = this.CreateSpecialFolderCollection();
            this.ShowSpecialFoldersInTreeBrowser = false;
        }
Example #2
0
 /// <summary>
 /// Sets the session data for this settings object.
 /// </summary>
 /// <param name="profile"></param>
 public void SetUserProfile(ExplorerUserProfile profile)
 {
     UserProfile = profile;
 }