1 write to Width
PresentationFramework (1)
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
647
Width
= region.Width;
23 references to Width
PresentationFramework (23)
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (23)
323
return regionCount + (((rowIndex - region.Top) * region.
Width
) + columnIndex - region.Left);
647
Width = region.
Width
;
656
bool xMatch = (region.Left == Left) && (region.
Width
==
Width
);
726
remainder.Add(new CellRegion(Left, Top,
Width
, region.Top - Top));
748
remainder.Add(new CellRegion(Left, region.Bottom + 1,
Width
, Bottom - region.Bottom));
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);
1296
AddRegion(movedRegion.Top, newIndex, movedRegion.Height, movedRegion.
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
);
1409
if ((region.
Width
== numColumns) && (region.Height == rows.Count))
1552
columnIndexRanges.Add(region.
Width
);
1598
columnIndex = region.Left + (index % region.
Width
);
1599
rowIndex = region.Top + (index / region.
Width
);