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