当调用 RoutedCommand 时,Xamly 开始故事板?

发布于 2024-08-17 11:41:42 字数 57 浏览 13 评论 0原文

有没有办法在使用 XAML 执行 ICommand 时开始故事板?

Is there a way to begin a storyboard wen an ICommand is executed WITH XAML?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执手闯天涯 2024-08-24 11:41:42

RoutedCommands 涉及一些隐藏代码,但这绝对是可行的。

最简单的方法是向父控件添加 CommandBinding。像这样的事情:

    <UserControl>
      <UserControl.CommandBindings>
        <CommandBinding Command="ApplicationCommands.Exit" Executed="HandleExit"/>
     </UserControl.CommandBindings>
   </UserControl>

然后在名为“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:

    <UserControl>
      <UserControl.CommandBindings>
        <CommandBinding Command="ApplicationCommands.Exit" Executed="HandleExit"/>
     </UserControl.CommandBindings>
   </UserControl>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文