public void AddExportList(String name)
        {
            ExportList newList = new ExportList(name);

            pf.ExportList.Add(newList);

            ExportController.UpdateExportLists(pf.ExportList);

            ExportListsChanged();
        }
        /// <summary>
        /// Creates a new empty project
        /// </summary>
        private ProjectController(ProjectFile file, Uri fileLocation)
        {
            pf = file;
            this.FileLocation = fileLocation;
            ExportController  = new ExportListController(this);
            ExportController.UpdateExportLists(file.ExportList);

            UTransformController = new UTransformController(ConfigController);
        }