WPF: link real estate change with animation?

I am new to WPF and have a View Model with a DateTime property. I have already implemented INotifyPropertyChanged and automatically update my view with the properties contained in the view model. I want to associate the DateTime property with a simple animation. How to cause animation when changing DateTime value?

+4
source share
1 answer

You will need a XAML style for the object displaying the property that the DataTrigger has to change the property using the storyboard (see here: animation of the MVVM WPF property change )

+2
source

All Articles