WPF:将属性更改连接到动画?
我是 WPF 新手,并且有一个带有 DateTime
属性的视图模型。我已经实现了 INotifyPropertyChanged 并使用视图模型中包含的属性自动更新我的视图。我想将 DateTime
属性连接到一个简单的动画。当 DateTime
值发生变化时,如何触发动画?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 XAML 中为显示属性的对象提供一个样式,该对象具有一个 DataTrigger,用于通过故事板更改属性(请参见此处:WPF MVVM 属性更改动画)
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)