我可以<Interaction.Triggers />
在 WPF MVVM 中使用而不是在 Silverlight 中使用吗?
我遇到的所有示例都显示了<Interaction.Triggers />
在 Silverlight 中的使用。
如何在 WPF 中使用它?我正在使用 MVVM 模型。
添加对程序集 System.Windows.Interactivity 的引用
然后在 XAML 中将其声明为
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
或者如果你安装了 Blend SDK 就使用它
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
并在 XAML 中用作
<i:Interaction.Triggers>
<i:EventTrigger>
</i:EventTrigger>
</i:Interaction.Triggers>