Esempio n. 1
0
        /// <summary>
        /// Reading file system
        /// </summary>
        /// <param name="pFilePath">File path</param>
        public void LoadFileSystem(string pFilePath)
        {
            this.FileSystem = XmlSerialiser <FileSystem> .ReadFromXmlFile(pFilePath);

            this.FileSystem.FilePath = pFilePath;
            this.TriggerOnFileSystem();
        }
Esempio n. 2
0
        /// <summary>
        /// Loading icons
        /// </summary>
        /// <param name="pFilePath">File path</param>
        public void LoadIcons(string pFilePath)
        {
            this.Icons = XmlSerialiser <Icons> .ReadFromXmlFile(pFilePath);

            this.Icons.FilePath = pFilePath;
            this.TriggerOnIconSet();
        }