protected override void OnAssignObject(Cell view, int index)
 {
     //Apply properties to the view to make it like I want
     view.PrepareForUse(Cell.CellType.Screenshot);
     if (index < _screenshots.Count)
         view.FillViewWithObject(Utils.Util.DownloadScreenshotUrl(_screenshots[index].Url, _screenshots[index].Ext));
 }
 protected override void OnAssignObject(Cell view, int index)
 {
     view.PrepareForUse(Cell.CellType.Icon);
     if (index < _icons.Count)
         view.FillViewWithObject(Utils.Util.DownloadIconUrl(_icons[index].Url, _icons[index].Ext));
 }