I’m new to WPF and have a View Model with a DateTime property. I already implemented INotifyPropertyChanged and auto-update my view with properties contained in the view model. I want to wire the DateTime property to a simple animation. How would I trigger an animation when the DateTime value changes?
I’m new to WPF and have a View Model with a DateTime property. I
Share
You’ll need a Style in the XAML for the object displaying the property that has a DataTrigger for the property changing with a Storyboard(see here: WPF MVVM Property Change Animation)