1 write to Width
PresentationFramework (1)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
640
Width
= region.Width;
23 references to Width
PresentationFramework (23)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (23)
318
return regionCount + (((rowIndex - region.Top) * region.
Width
) + columnIndex - region.Left);
640
Width = region.
Width
;
649
bool xMatch = (region.Left == Left) && (region.
Width
==
Width
);
719
remainder.Add(new CellRegion(Left, Top,
Width
, region.Top - Top));
741
remainder.Add(new CellRegion(Left, region.Bottom + 1,
Width
, Bottom - region.Bottom));
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);
1289
AddRegion(movedRegion.Top, newIndex, movedRegion.Height, movedRegion.
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
);
1402
if ((region.
Width
== numColumns) && (region.Height == rows.Count))
1545
columnIndexRanges.Add(region.
Width
);
1591
columnIndex = region.Left + (index % region.
Width
);
1592
rowIndex = region.Top + (index / region.
Width
);