17 references to ItemUICount
PresentationFramework (17)
System\Windows\Controls\DataGridCellsPanel.cs (3)
2074RemoveChildRange(args.Position, args.ItemCount, args.ItemUICount); 2079RemoveChildRange(args.Position, args.ItemCount, args.ItemUICount); 2084RemoveChildRange(args.OldPosition, args.ItemCount, args.ItemUICount);
System\Windows\Controls\Panel.cs (3)
700RemoveChildren(args.Position, args.ItemUICount); 703ReplaceChildren(args.Position, args.ItemCount, args.ItemUICount); 706MoveChildren(args.OldPosition, args.Position, args.ItemUICount);
System\Windows\Controls\Primitives\ToolBarPanel.cs (3)
395RemoveChildren(args.Position, args.ItemUICount); 398ReplaceChildren(args.Position, args.ItemCount, args.ItemUICount); 401MoveChildren(args.OldPosition, args.Position, args.ItemUICount);
System\Windows\Controls\VirtualizingStackPanel.cs (8)
3564"count:", args.ItemCount, args.ItemUICount, 3661shouldItemsChangeAffectLayout = args.ItemUICount > 0 || 3668shouldItemsChangeAffectLayout = args.ItemUICount > 0; 8964RemoveChildRange(args.Position, args.ItemCount, args.ItemUICount); 8969if (args.ItemUICount > 0) 8971Debug.Assert(args.ItemUICount == args.ItemCount, "Both ItemUICount and ItemCount should be equal or ItemUICount should be 0."); 8976for (int i=0; i<args.ItemUICount; ++i) 8993RemoveChildRange(args.OldPosition, args.ItemCount, args.ItemUICount);