Suppose I have a ListBox
bound to an ObservableCollection
and I want to animate adding/removing of ListBoxItems
eg. FadeIn/Out, SlideDown/Up etc. How can I do that?
相关问题
- VNC control for WPF application
- WPF Binding from System.Windows.SystemParameters.P
- XAML: Applying styles to nested controls
- How can I add a horizontal line (“goal line”) for
- How to properly change a resource dictionary
For me
FrameworkElement.Unloaded
event doesn't work - the item just disappears instantly. I can hardly believe that years of experience with WPF haven't produced anything prettier, but looks like the only way this can work is a hack described here: Animating removed item in Listbox ?..