我正在尝试使用交互触发器在我的 ViewModel 中的 Property 上引发 PropertyChanged 事件。
CS :
public string MyContentProperty
{
get { return "I Was Raised From an outside Source !";}
}
XAML:
<Button Content="{Binding MyContentProperty}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Button.Click">
< .... what needs to be done ?>
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>
当然,如果对这个问题有任何疑问,您可以参考
xmlns:ei="clr-namespace:Microsoft.Expression.Interactivity.Core;assembly=Microsoft.Expression.Interactions"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
随时为您服务,在此先感谢您。