2 writes to _gridStructure
Microsoft.Maui (2)
Layouts\GridLayoutManager.cs (2)
24 _gridStructure = new GridStructure(Grid, widthConstraint, heightConstraint); 34 _gridStructure ??= new GridStructure(Grid, bounds.Width, bounds.Height);
6 references to _gridStructure
Microsoft.Maui (6)
Layouts\GridLayoutManager.cs (6)
26 var measuredWidth = _gridStructure.MeasuredGridWidth(); 27 var measuredHeight = _gridStructure.MeasuredGridHeight(); 36 _gridStructure.PrepareForArrange(bounds.Size); 45 var cell = _gridStructure.GetCellBoundsFor(view, bounds.Left, bounds.Top); 49 var actual = new Size(_gridStructure.MeasuredGridWidth(), _gridStructure.MeasuredGridHeight());