Example #1
0
        public void AddWorkFolderPath(string folderPath)
        {
            AddToResentPathInProgramSettings(folderPath);

            jumpListService.AddPath(folderPath);
            Changed?.Invoke(this, EventArgs.Empty);
        }
Example #2
0
        public void AddModelPaths(string modelFilePath)
        {
            if (!File.Exists(modelFilePath))
            {
                return;
            }

            AddToResentPathInProgramSettings(modelFilePath);

            jumpListService.AddPath(modelFilePath);
            Changed?.Invoke(this, EventArgs.Empty);
        }