Ejemplo n.º 1
0
        public void AddWorkFolderPath(string folderPath)
        {
            AddToResentPathInProgramSettings(folderPath);

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

            AddToResentPathInProgramSettings(modelFilePath);

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