void contentMx_ImageLoadingRequest(object sender, LayoutFarm.ContentManagers.ImageRequestEventArgs e) { //load resource -- sync or async? string absolutePath = imgFolderPath + "\\" + e.ImagSource; if (!System.IO.File.Exists(absolutePath)) { return; } //load e.SetResultImage(LoadBitmap(absolutePath)); }
void contentMx_ImageLoadingRequest(object sender, LayoutFarm.ContentManagers.ImageRequestEventArgs e) { //load resource -- sync or async? string absolutePath = documentRootPath + "\\" + e.ImagSource; if (!System.IO.File.Exists(absolutePath)) { return; } //load System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(absolutePath); e.SetResultImage(DemoBitmap.CreateFromGdiPlusBitmap(bmp)); }