1 write to Bottom
PresentationFramework (1)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
684Bottom = Math.Max(prevBottom, region.Bottom);
24 references to Bottom
PresentationFramework (24)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (24)
161int bottom = region.Bottom; 583return (x >= Left) && (y >= Top) && (x <= Right) && (y <= Bottom); 590(Right >= region.Right) && (Bottom >= region.Bottom); 596Intersects(Top, Bottom, region.Top, region.Bottom); 611int bottom = Math.Min(Bottom, region.Bottom); 655int end = xMatch ? Bottom : Right; 657int compareEnd = xMatch ? region.Bottom : region.Right; 680int prevBottom = Bottom; 684Bottom = Math.Max(prevBottom, region.Bottom); 725int bottom = Math.Min(Bottom, region.Bottom); 733int bottom = Math.Min(Bottom, region.Bottom); 737if (Bottom > region.Bottom) 740remainder.Add(new CellRegion(Left, region.Bottom + 1, Width, Bottom - region.Bottom)); 812if (region.Bottom > bottom) 814bottom = region.Bottom; 1635for (int rowIndex = region.Top; rowIndex <= region.Bottom; rowIndex++)