17 references to ItemUICount
PresentationFramework (17)
System\Windows\Controls\DataGridCellsPanel.cs (3)
2064RemoveChildRange(args.Position, args.ItemCount, args.ItemUICount); 2069RemoveChildRange(args.Position, args.ItemCount, args.ItemUICount); 2074RemoveChildRange(args.OldPosition, args.ItemCount, args.ItemUICount);
System\Windows\Controls\Panel.cs (3)
692RemoveChildren(args.Position, args.ItemUICount); 695ReplaceChildren(args.Position, args.ItemCount, args.ItemUICount); 698MoveChildren(args.OldPosition, args.Position, args.ItemUICount);
System\Windows\Controls\Primitives\ToolBarPanel.cs (3)
384RemoveChildren(args.Position, args.ItemUICount); 387ReplaceChildren(args.Position, args.ItemCount, args.ItemUICount); 390MoveChildren(args.OldPosition, args.Position, args.ItemUICount);
System\Windows\Controls\VirtualizingStackPanel.cs (8)
3544"count:", args.ItemCount, args.ItemUICount, 3641shouldItemsChangeAffectLayout = args.ItemUICount > 0 || 3648shouldItemsChangeAffectLayout = args.ItemUICount > 0; 8937RemoveChildRange(args.Position, args.ItemCount, args.ItemUICount); 8942if (args.ItemUICount > 0) 8944Debug.Assert(args.ItemUICount == args.ItemCount, "Both ItemUICount and ItemCount should be equal or ItemUICount should be 0."); 8949for (int i=0; i<args.ItemUICount; ++i) 8966RemoveChildRange(args.OldPosition, args.ItemCount, args.ItemUICount);