1 write to Width
PresentationFramework (1)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
639
Width
= region.Width;
23 references to Width
PresentationFramework (23)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (23)
317
return regionCount + (((rowIndex - region.Top) * region.
Width
) + columnIndex - region.Left);
639
Width = region.
Width
;
648
bool xMatch = (region.Left == Left) && (region.
Width
==
Width
);
718
remainder.Add(new CellRegion(Left, Top,
Width
, region.Top - Top));
740
remainder.Add(new CellRegion(Left, region.Bottom + 1,
Width
, Bottom - region.Bottom));
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);
1288
AddRegion(movedRegion.Top, newIndex, movedRegion.Height, movedRegion.
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
);
1401
if ((region.
Width
== numColumns) && (region.Height == rows.Count))
1544
columnIndexRanges.Add(region.
Width
);
1590
columnIndex = region.Left + (index % region.
Width
);
1591
rowIndex = region.Top + (index / region.
Width
);