试图将 WPF 上的click
orchecked
事件绑定到我的视图模型chekbox
中的 a command
,但我不确定技术和事件名称,谁能指出我正确的方向?
现在代码编译但trigger
不调用FooCommand
<CheckBox IsChecked="{Binding PartData.ReportIncluded, Mode=TwoWay}"
VerticalAlignment="Center">
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseLeftButtonDown" >
<i:InvokeCommandAction Command="{Binding FooCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</CheckBox>