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