4 references to CellTableViewCell
Microsoft.Maui.Controls.Compatibility (4)
iOS\Cells\CellRenderer.cs (1)
28
var tvc = reusableCell as CellTableViewCell ?? new
CellTableViewCell
(UITableViewCellStyle.Default, item.GetType().FullName);
iOS\Cells\EntryCellRenderer.cs (1)
142
public EntryCellTableViewCell(string cellName) :
base
(UITableViewCellStyle.Value1, cellName)
iOS\Cells\SwitchCellRenderer.cs (1)
27
tvc = new
CellTableViewCell
(UITableViewCellStyle.Value1, CellName);
iOS\Cells\TextCellRenderer.cs (1)
27
tvc = new
CellTableViewCell
(UITableViewCellStyle.Subtitle, item.GetType().FullName);