3 instantiations of UIContainerCell
Microsoft.Maui.Controls (3)
Compatibility\Handlers\Shell\iOS\ShellSearchResultsRenderer.cs (1)
130
cell = new
UIContainerCell
(cellId, view);
Compatibility\Handlers\Shell\iOS\ShellTableViewSource.cs (2)
167
cell = new
UIContainerCell
(cellId, view, _context.Shell, context);
173
cell = new
UIContainerCell
(cellId, view, _context.Shell, context);
15 references to UIContainerCell
Microsoft.Maui.Controls (15)
Compatibility\Handlers\Shell\iOS\ShellSearchResultsRenderer.cs (2)
123
var
cell = (
UIContainerCell
)tableView.DequeueReusableCell(cellId);
Compatibility\Handlers\Shell\iOS\ShellTableViewSource.cs (12)
17
Dictionary<Element,
UIContainerCell
> _cells;
38
foreach (
var
cell in _cells.Values)
42
_cells = new Dictionary<Element,
UIContainerCell
>();
63
_cells = new Dictionary<Element,
UIContainerCell
>();
68
_cells = new Dictionary<Element,
UIContainerCell
>();
74
UIContainerCell
result;
83
foreach (
var
cell in oldList.Values)
97
foreach (
var
cell in _cells.Values)
100
_cells = new Dictionary<Element,
UIContainerCell
>();
110
if (!_cells.TryGetValue(context, out
var
view))
163
UIContainerCell
cell;
186
void OnViewMeasureInvalidated(
UIContainerCell
cell)
Compatibility\Handlers\Shell\iOS\UIContainerCell.cs (1)
14
internal Action<
UIContainerCell
> ViewMeasureInvalidated { get; set; }