2 writes to ContentCell
Microsoft.Maui.Controls.Compatibility (2)
iOS\ContextActionCell.cs (2)
215 ContentCell = null; 218 ContentCell = nativeCell;
21 references to ContentCell
Microsoft.Maui.Controls.Compatibility (21)
iOS\Cells\CellTableViewCell.cs (2)
67 reusableCell = contextCell.ContentCell; 88 var viewTableCell = contextCell.ContentCell as ViewCellRenderer.ViewTableCell;
iOS\ContextActionCell.cs (16)
74 var boxedCell = ContentCell as INativeElementView; 77 throw new InvalidOperationException($"Implement {nameof(INativeElementView)} on cell renderer: {ContentCell.GetType().AssemblyQualifiedName}"); 100 Update(_tableView, _cell, ContentCell); 102 if (ContentCell is ViewCellRenderer.ViewTableCell && ContentCell.Subviews.Length > 0 && Math.Abs(ContentCell.Subviews[0].Frame.Height - Bounds.Height) > 1) 110 ContentCell.LayoutSubviews(); 121 return ContentCell.SizeThatFits(size); 210 if (ContentCell != nativeCell) 212 if (ContentCell != null) 214 ContentCell.RemoveFromSuperview(); 222 if ((ContentCell as CellTableViewCell)?.Cell is ImageCell) 257 if (ContentCell != null) 259 SelectionStyle = ContentCell.SelectionStyle; 459 Update(_tableView, _cell, ContentCell); 471 Update(_tableView, _cell, ContentCell);
iOS\ContextScrollViewDelegate.cs (2)
176 contentCell.ContentCell.AddGestureRecognizer(_closer); 233 cell?.ContentCell?.RemoveGestureRecognizer(_closer);
iOS\Renderers\ListViewRenderer.cs (1)
1405 contextCell.ContentCell.BackgroundColor = color;