2 writes to Left
PresentationFramework (2)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (2)
637Left = region.Left; 681Left = Math.Min(Left, region.Left);
41 references to Left
PresentationFramework (41)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (41)
159if ((region.Left <= columnIndex) && (columnIndex <= region.Right)) 317return regionCount + (((rowIndex - region.Top) * region.Width) + columnIndex - region.Left); 583return (x >= Left) && (y >= Top) && (x <= Right) && (y <= Bottom); 589return (Left <= region.Left) && (Top <= region.Top) && 595return Intersects(Left, Right, region.Left, region.Right) && 608int left = Math.Max(Left, region.Left); 637Left = region.Left; 648bool xMatch = (region.Left == Left) && (region.Width == Width); 654int start = xMatch ? Top : Left; 656int compareStart = xMatch ? region.Top : region.Left; 681Left = Math.Min(Left, region.Left); 718remainder.Add(new CellRegion(Left, Top, Width, region.Top - Top)); 721if (Left < region.Left) 726remainder.Add(new CellRegion(Left, top, region.Left - Left, bottom - top + 1)); 740remainder.Add(new CellRegion(Left, region.Bottom + 1, Width, Bottom - region.Bottom)); 797if (region.Left < left) 799left = region.Left; 994AddRegion(keptRegion.Top + 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1026AddRegion(keptRegion.Top - 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1082AddRegion(keptRegion.Top - 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1098AddRegion(newIndex, movedRegion.Left, movedRegion.Height, movedRegion.Width, /* notify = */ false); 1110AddRegion(keptRegion.Top + 1, keptRegion.Left, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1167AddRegion(keptRegion.Top, keptRegion.Left + 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1214AddRegion(keptRegion.Top, keptRegion.Left - 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1273AddRegion(keptRegion.Top, keptRegion.Left - 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1300AddRegion(keptRegion.Top, keptRegion.Left + 1, keptRegion.Height, keptRegion.Width, /* notify = */ false); 1355AddRegion(region.Top, region.Left, region.Height, region.Width); 1374c2.RemoveRegion(region.Top, region.Left, region.Height, region.Width); 1382c1.RemoveRegion(region.Top, region.Left, region.Height, region.Width); 1467RemoveAllButRegion(firstRegion.Top, firstRegion.Left, 1, 1); 1543columnIndexRanges.Add(region.Left); 1590columnIndex = region.Left + (index % region.Width); 1638for (int columnIndex = region.Left; columnIndex <= region.Right; columnIndex++)