2 writes to _childrenToLayOut
Microsoft.Maui (2)
Layouts\GridLayoutManager.cs (2)
123
_childrenToLayOut
= new IView[gridChildCount];
136
Array.Resize(ref
_childrenToLayOut
, currentChild);
8 references to _childrenToLayOut
Microsoft.Maui (8)
Layouts\GridLayoutManager.cs (8)
129
_childrenToLayOut
[currentChild] = _grid[n];
140
_cells = new Cell[
_childrenToLayOut
.Length];
199
for (int n = 0; n <
_childrenToLayOut
.Length; n++)
201
var view =
_childrenToLayOut
[n];
382
var child =
_childrenToLayOut
[cell.ViewIndex];
638
starSize = Math.Max(starSize, dimension(
_childrenToLayOut
[cell.ViewIndex].DesiredSize));
726
var cellRequiredHeight = Math.Min(_gridHeightConstraint,
_childrenToLayOut
[cell.ViewIndex].DesiredSize.Height);
750
var cellRequiredWidth = Math.Min(_gridWidthConstraint,
_childrenToLayOut
[cell.ViewIndex].DesiredSize.Width);