17 references to ItemUICount
PresentationFramework (17)
System\Windows\Controls\DataGridCellsPanel.cs (3)
2070RemoveChildRange(args.Position, args.ItemCount, args.ItemUICount); 2075RemoveChildRange(args.Position, args.ItemCount, args.ItemUICount); 2080RemoveChildRange(args.OldPosition, args.ItemCount, args.ItemUICount);
System\Windows\Controls\Panel.cs (3)
693RemoveChildren(args.Position, args.ItemUICount); 696ReplaceChildren(args.Position, args.ItemCount, args.ItemUICount); 699MoveChildren(args.OldPosition, args.Position, args.ItemUICount);
System\Windows\Controls\Primitives\ToolBarPanel.cs (3)
386RemoveChildren(args.Position, args.ItemUICount); 389ReplaceChildren(args.Position, args.ItemCount, args.ItemUICount); 392MoveChildren(args.OldPosition, args.Position, args.ItemUICount);
System\Windows\Controls\VirtualizingStackPanel.cs (8)
3559"count:", args.ItemCount, args.ItemUICount, 3656shouldItemsChangeAffectLayout = args.ItemUICount > 0 || 3663shouldItemsChangeAffectLayout = args.ItemUICount > 0; 8959RemoveChildRange(args.Position, args.ItemCount, args.ItemUICount); 8964if (args.ItemUICount > 0) 8966Debug.Assert(args.ItemUICount == args.ItemCount, "Both ItemUICount and ItemCount should be equal or ItemUICount should be 0."); 8971for (int i=0; i<args.ItemUICount; ++i) 8988RemoveChildRange(args.OldPosition, args.ItemCount, args.ItemUICount);