17 references to ItemUICount
PresentationFramework (17)
System\Windows\Controls\DataGridCellsPanel.cs (3)
2052
RemoveChildRange(args.Position, args.ItemCount, args.
ItemUICount
);
2057
RemoveChildRange(args.Position, args.ItemCount, args.
ItemUICount
);
2062
RemoveChildRange(args.OldPosition, args.ItemCount, args.
ItemUICount
);
System\Windows\Controls\Panel.cs (3)
692
RemoveChildren(args.Position, args.
ItemUICount
);
695
ReplaceChildren(args.Position, args.ItemCount, args.
ItemUICount
);
698
MoveChildren(args.OldPosition, args.Position, args.
ItemUICount
);
System\Windows\Controls\Primitives\ToolBarPanel.cs (3)
384
RemoveChildren(args.Position, args.
ItemUICount
);
387
ReplaceChildren(args.Position, args.ItemCount, args.
ItemUICount
);
390
MoveChildren(args.OldPosition, args.Position, args.
ItemUICount
);
System\Windows\Controls\VirtualizingStackPanel.cs (8)
3544
"count:", args.ItemCount, args.
ItemUICount
,
3641
shouldItemsChangeAffectLayout = args.
ItemUICount
> 0 ||
3648
shouldItemsChangeAffectLayout = args.
ItemUICount
> 0;
8934
RemoveChildRange(args.Position, args.ItemCount, args.
ItemUICount
);
8939
if (args.
ItemUICount
> 0)
8941
Debug.Assert(args.
ItemUICount
== args.ItemCount, "Both ItemUICount and ItemCount should be equal or ItemUICount should be 0.");
8946
for (int i=0; i<args.
ItemUICount
; ++i)
8963
RemoveChildRange(args.OldPosition, args.ItemCount, args.
ItemUICount
);