0

试图将 WPF 上的clickorchecked事件绑定到我的视图模型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> 
4

1 回答 1

0

看起来您缺少事件的“On”前缀,即 OnMouseLeftButtonDown 或 OnPreviewMouseLeftButtonDown

于 2012-07-05T14:18:57.823 回答