2 writes to Left
PresentationFramework (2)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (2)
638Left = region.Left; 682Left = Math.Min(Left, region.Left);
41 references to Left
PresentationFramework (41)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (41)
160if ((region.Left <= columnIndex) && (columnIndex <= region.Right)) 318return regionCount + (((rowIndex - region.Top) * region.Width) + columnIndex - region.Left); 584return (x >= Left) && (y >= Top) && (x <= Right) && (y <= Bottom); 590return (Left <= region.Left) && (Top <= region.Top) && 596return Intersects(Left, Right, region.Left, region.Right) && 609int left = Math.Max(Left, region.Left); 638Left = region.Left; 649bool xMatch = (region.Left == Left) && (region.Width == Width); 655int start = xMatch ? Top : Left; 657int compareStart = xMatch ? region.Top : region.Left; 682Left = Math.Min(Left, region.Left); 719remainder.Add(new CellRegion(Left, Top, Width, region.Top - Top)); 722if (Left < region.Left) 727remainder.Add(new CellRegion(Left, top, region.Left - Left, bottom - top + 1)); 741remainder.Add(new CellRegion(Left, region.Bottom + 1, Width, Bottom - region.Bottom)); 798if (region.Left < left) 800left = region.Left; 995AddRegion(keptRegion.Top + 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1027AddRegion(keptRegion.Top - 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1083AddRegion(keptRegion.Top - 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1099AddRegion(newIndex, movedRegion.Left, movedRegion.Height, movedRegion.Width, /* notify = */ false); 1111AddRegion(keptRegion.Top + 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1168AddRegion(keptRegion.Top, keptRegion.Left + 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1215AddRegion(keptRegion.Top, keptRegion.Left - 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1274AddRegion(keptRegion.Top, keptRegion.Left - 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1301AddRegion(keptRegion.Top, keptRegion.Left + 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1356AddRegion(region.Top, region.Left, region.Height, region.Width); 1375c2.RemoveRegion(region.Top, region.Left, region.Height, region.Width); 1383c1.RemoveRegion(region.Top, region.Left, region.Height, region.Width); 1468RemoveAllButRegion(firstRegion.Top, firstRegion.Left, 1, 1); 1544columnIndexRanges.Add(region.Left); 1591columnIndex = region.Left + (index % region.Width); 1639for (int columnIndex = region.Left; columnIndex <= region.Right; columnIndex++)