17 references to ItemUICount
PresentationFramework (17)
src\Framework\System\Windows\Controls\DataGridCellsPanel.cs (3)
2076
RemoveChildRange(args.Position, args.ItemCount, args.
ItemUICount
);
2081
RemoveChildRange(args.Position, args.ItemCount, args.
ItemUICount
);
2086
RemoveChildRange(args.OldPosition, args.ItemCount, args.
ItemUICount
);
src\Framework\System\Windows\Controls\Panel.cs (3)
704
RemoveChildren(args.Position, args.
ItemUICount
);
707
ReplaceChildren(args.Position, args.ItemCount, args.
ItemUICount
);
710
MoveChildren(args.OldPosition, args.Position, args.
ItemUICount
);
src\Framework\System\Windows\Controls\Primitives\ToolBarPanel.cs (3)
396
RemoveChildren(args.Position, args.
ItemUICount
);
399
ReplaceChildren(args.Position, args.ItemCount, args.
ItemUICount
);
402
MoveChildren(args.OldPosition, args.Position, args.
ItemUICount
);
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (8)
3501
"count:", args.ItemCount, args.
ItemUICount
,
3596
shouldItemsChangeAffectLayout = args.
ItemUICount
> 0 ||
3603
shouldItemsChangeAffectLayout = args.
ItemUICount
> 0;
8806
RemoveChildRange(args.Position, args.ItemCount, args.
ItemUICount
);
8811
if (args.
ItemUICount
> 0)
8813
Debug.Assert(args.
ItemUICount
== args.ItemCount, "Both ItemUICount and ItemCount should be equal or ItemUICount should be 0.");
8818
for (int i=0; i<args.
ItemUICount
; ++i)
8835
RemoveChildRange(args.OldPosition, args.ItemCount, args.
ItemUICount
);