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