17 references to ItemUICount
PresentationFramework (17)
System\Windows\Controls\DataGridCellsPanel.cs (3)
2072
RemoveChildRange(args.Position, args.ItemCount, args.
ItemUICount
);
2077
RemoveChildRange(args.Position, args.ItemCount, args.
ItemUICount
);
2082
RemoveChildRange(args.OldPosition, args.ItemCount, args.
ItemUICount
);
System\Windows\Controls\Panel.cs (3)
693
RemoveChildren(args.Position, args.
ItemUICount
);
696
ReplaceChildren(args.Position, args.ItemCount, args.
ItemUICount
);
699
MoveChildren(args.OldPosition, args.Position, args.
ItemUICount
);
System\Windows\Controls\Primitives\ToolBarPanel.cs (3)
388
RemoveChildren(args.Position, args.
ItemUICount
);
391
ReplaceChildren(args.Position, args.ItemCount, args.
ItemUICount
);
394
MoveChildren(args.OldPosition, args.Position, args.
ItemUICount
);
System\Windows\Controls\VirtualizingStackPanel.cs (8)
3557
"count:", args.ItemCount, args.
ItemUICount
,
3654
shouldItemsChangeAffectLayout = args.
ItemUICount
> 0 ||
3661
shouldItemsChangeAffectLayout = args.
ItemUICount
> 0;
8959
RemoveChildRange(args.Position, args.ItemCount, args.
ItemUICount
);
8964
if (args.
ItemUICount
> 0)
8966
Debug.Assert(args.
ItemUICount
== args.ItemCount, "Both ItemUICount and ItemCount should be equal or ItemUICount should be 0.");
8971
for (int i=0; i<args.
ItemUICount
; ++i)
8988
RemoveChildRange(args.OldPosition, args.ItemCount, args.
ItemUICount
);