当调用 RoutedCommand 时,Xamly 开始故事板?
有没有办法在使用 XAML 执行 ICommand 时开始故事板?
Is there a way to begin a storyboard wen an ICommand is executed WITH XAML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RoutedCommands 涉及一些隐藏代码,但这绝对是可行的。
最简单的方法是向父控件添加 CommandBinding。像这样的事情:
然后在名为“HandleExit”的代码隐藏事件处理程序中,按名称或从资源集合中调用情节提要。
如果您需要更多说明,请告诉我。
RoutedCommands involve some code-behind, but this is definitely doable.
The simplest way is to add a CommandBinding to the parent control. Something like this:
Then in your code-behind event handler named 'HandleExit', invoke the storyboard either by name or from the Resources collection.
Let me know if you need some more clarification.