1 write to Bottom
PresentationFramework (1)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
685Bottom = Math.Max(prevBottom, region.Bottom);
24 references to Bottom
PresentationFramework (24)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (24)
162int bottom = region.Bottom; 584return (x >= Left) && (y >= Top) && (x <= Right) && (y <= Bottom); 591(Right >= region.Right) && (Bottom >= region.Bottom); 597Intersects(Top, Bottom, region.Top, region.Bottom); 612int bottom = Math.Min(Bottom, region.Bottom); 656int end = xMatch ? Bottom : Right; 658int compareEnd = xMatch ? region.Bottom : region.Right; 681int prevBottom = Bottom; 685Bottom = Math.Max(prevBottom, region.Bottom); 726int bottom = Math.Min(Bottom, region.Bottom); 734int bottom = Math.Min(Bottom, region.Bottom); 738if (Bottom > region.Bottom) 741remainder.Add(new CellRegion(Left, region.Bottom + 1, Width, Bottom - region.Bottom)); 813if (region.Bottom > bottom) 815bottom = region.Bottom; 1636for (int rowIndex = region.Top; rowIndex <= region.Bottom; rowIndex++)