0

I want to create user control based on ListBox (ListView) with such animation: the items in listbox do not loads all at once, they have to load step-by-step (item-by-item, first then second, then third, etc.) with some timeout between them.

How can I do that? Thanks in advance for your help :)

  • possible duplicate of [ListBox Slide Animation On New Item Added](http://stackoverflow.com/questions/13035766/listbox-slide-animation-on-new-item-added) – JMK Aug 08 '13 at 10:08

1 Answers1

0

The suggested Slide Animation is a view animation. I think you want a data animation. Bind to an alternate view only collection. Populate this collection one at a time from the backing collection with the aid of a timer. A quick search reveals that a Dispatch Timer seems to be preferred with WPF usage.

Community
  • 1
  • 1