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