public OwnerDrawnCellView(OwnerDrawnElement element)
 {
     this.element           = element;
     this.AutosizesSubviews = true;
     this.AutoresizingMask  = UIViewAutoresizing.FlexibleWidth;
     this.BackgroundColor   = UIColor.Clear;
 }
 public OwnerDrawnCell(OwnerDrawnElement element, UITableViewCellStyle style, string cellReuseIdentifier) : base(style, cellReuseIdentifier)
 {
     Element = element;
 }