ViewModel 中的事件触发的 View 中的 ControlStoryboardAction

发布于 2024-11-26 21:44:47 字数 342 浏览 0 评论 0原文

<i:Interaction.Triggers>
   <i:EventTrigger EventName="DownloadStartedEvent">
       <ei:ControlStoryboardAction/>
   </i:EventTrigger>
<i:Interaction.Triggers>

DownloadStartedEvent 是我的 ViewModel 上的一些公共事件。当 ViewModel 上的 DownloadStartedEvent 被触发时,我希望视图上的这个触发器启动 StoryBoard。有办法实现吗?

<i:Interaction.Triggers>
   <i:EventTrigger EventName="DownloadStartedEvent">
       <ei:ControlStoryboardAction/>
   </i:EventTrigger>
<i:Interaction.Triggers>

DownloadStartedEvent is some public event on my ViewModel. I want this trigger on my View to start a StoryBoard when the DownloadStartedEvent on the ViewModel is fired. Is there a way to achieve that ?

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

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

发布评论

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

评论(1

§普罗旺斯的薰衣草 2024-12-03 21:44:47

当您将 EventName 绑定到 DataContext 的事件(也称为您的视图模型)时,它应该可以工作

<i:Interaction.Triggers>
  <i:EventTrigger EventName="{Binding DownloadStartedEvent}">
   <ei:ControlStoryboardAction/>
  </i:EventTrigger>
<i:Interaction.Triggers>

It should work when you bind the EventName to the event of the DataContext (aka. your viewmodel)

<i:Interaction.Triggers>
  <i:EventTrigger EventName="{Binding DownloadStartedEvent}">
   <ei:ControlStoryboardAction/>
  </i:EventTrigger>
<i:Interaction.Triggers>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文