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