2 writes to Left
PresentationFramework (2)
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (2)
645Left = region.Left; 689Left = Math.Min(Left, region.Left);
41 references to Left
PresentationFramework (41)
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (41)
165if ((region.Left <= columnIndex) && (columnIndex <= region.Right)) 323return regionCount + (((rowIndex - region.Top) * region.Width) + columnIndex - region.Left); 591return (x >= Left) && (y >= Top) && (x <= Right) && (y <= Bottom); 597return (Left <= region.Left) && (Top <= region.Top) && 603return Intersects(Left, Right, region.Left, region.Right) && 616int left = Math.Max(Left, region.Left); 645Left = region.Left; 656bool xMatch = (region.Left == Left) && (region.Width == Width); 662int start = xMatch ? Top : Left; 664int compareStart = xMatch ? region.Top : region.Left; 689Left = Math.Min(Left, region.Left); 726remainder.Add(new CellRegion(Left, Top, Width, region.Top - Top)); 729if (Left < region.Left) 734remainder.Add(new CellRegion(Left, top, region.Left - Left, bottom - top + 1)); 748remainder.Add(new CellRegion(Left, region.Bottom + 1, Width, Bottom - region.Bottom)); 805if (region.Left < left) 807left = region.Left; 1002AddRegion(keptRegion.Top + 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1034AddRegion(keptRegion.Top - 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1090AddRegion(keptRegion.Top - 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1106AddRegion(newIndex, movedRegion.Left, movedRegion.Height, movedRegion.Width, /* notify = */ false); 1118AddRegion(keptRegion.Top + 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1175AddRegion(keptRegion.Top, keptRegion.Left + 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1222AddRegion(keptRegion.Top, keptRegion.Left - 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1281AddRegion(keptRegion.Top, keptRegion.Left - 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1308AddRegion(keptRegion.Top, keptRegion.Left + 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1363AddRegion(region.Top, region.Left, region.Height, region.Width); 1382c2.RemoveRegion(region.Top, region.Left, region.Height, region.Width); 1390c1.RemoveRegion(region.Top, region.Left, region.Height, region.Width); 1475RemoveAllButRegion(firstRegion.Top, firstRegion.Left, 1, 1); 1551columnIndexRanges.Add(region.Left); 1598columnIndex = region.Left + (index % region.Width); 1646for (int columnIndex = region.Left; columnIndex <= region.Right; columnIndex++)