public static void ConvertPwgImageListToPwgImageListWPF(List<PwgImage> aPwgImageList, ref PwgImageListWPF aPwgImageListWPF) { if (aPwgImageList != null) { foreach (PwgImage pwgImg in aPwgImageList) { AddPwgImageToList(pwgImg, ref aPwgImageListWPF); } } }
public static void AddPwgImageToList(PwgImage aPwgImage, ref PwgImageListWPF aPwgImageListWPF) { if (aPwgImage != null) { if (aPwgImageListWPF == null) { aPwgImageListWPF = new PwgImageListWPF(); } PwgImageWPF pwgImg = new PwgImageWPF(); PwgImageWPFHelper.ConvertPwgImageToPwgImageWPF(aPwgImage, ref pwgImg); aPwgImageListWPF.Add(pwgImg); } }