I have WPF ListBox
that shows a lot of data. I need smooth scrolling, so I ve set ListBox.ScrollViewer.CanContentScroll
to False that disables virtualization. Now when I open the tab where this ListBox
is placed, I see nothing for few seconds because ListBox
is loading/creating items/rendering. I also have a control that shows some animation that indicates that application is running and user should wait a bit.
How can I show this control while ListBox
is not available?