public void AddPostProcessProfile(PostProcessProfile postProcessProfile)
        {
            PostProcessProfileInfo postProcessProfileInfo =
                new PostProcessProfileInfo {
                PostProcessProfile = postProcessProfile
            };

            PostProcessProfileInfoList.Add(postProcessProfileInfo);
            RefreshPostProcessVolumes();
        }
 public void RemovePostProcessProfile(int index)
 {
     PostProcessProfileInfoList.RemoveAt(index);
     RefreshPostProcessVolumes();
 }