WPF通过事件调用命令

时间:2009-06-26 11:02:40

标签: wpf events command

是否可以通过WPF中的事件调用命令?

我有一个保存按钮,当按下该按钮调用命令时,在您完成编辑文本框时按此按钮,它也会将对象作为命令参数传递

 <Button Content="Save"  Command="{Binding DataContext.SaveQueueTimeCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ItemsControl}}}" CommandParameter="{Binding}" />

我理想的做法是调用此命令并在文本框失去焦点时将对象作为参数传递,而不是按下按钮,如:

 <Button LostFocus="{Binding SaveQueueTimeCommand}" />

仍以某种方式将对象作为参数传递。 有没有办法在不使用代码的情况下实现这一点,因为我正在使用MVVM模式

感谢您的时间

4 个答案:

答案 0 :(得分:64)

最简单的方法是使用交互式触发器。

<Grid xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity">
    <i:Interaction.Triggers>
        <i:EventTrigger EventName="SomeEvent">
            <i:InvokeCommandAction Command="{Binding Path=SomeCommand, Mode=OneWay}"/>
        </i:EventTrigger>
    </i:Interaction.Triggers>
</Grid>

为了后人的缘故,我添加了这个。

答案 1 :(得分:15)

您可以使用附加行为来实现此目的。 Marlon Grech编写了Attached Command Behaviors库,以免给您带来麻烦。用法如下:

<Grid>
    <local:CommandBehaviorCollection.Behaviors>
        <local:BehaviorBinding Event="MouseRightButtonDown" Command="{Binding SomeCommand}" CommandParameter="A Command on MouseRightButtonDown"/>
    </local:CommandBehaviorCollection.Behaviors>
</Grid>

答案 2 :(得分:3)

我担心我不认为你想做什么是可能的。命令不是委托,因此您无法将命令写入事件。我认为您最好的选择是处理Button.LostFocus事件,然后从处理程序手动执行命令。

在使用MVVM时将代码放在代码中没有任何问题,最好将其最小化并保持代码仅查看相关任务。我会将此代码视图称为相关,因此可以将代码放在代码中。

答案 3 :(得分:3)

<Grid MouseRightButtonDown ="{eb:EventBinding Command=SomeCommand, CommandParameter=$e}">

</Grid>

<强>命令

{eb:EventBinding} (Simple naming pattern to find Command)

{eb:EventBinding Command=CommandName}

<强> CommandParameter

$e (EventAgrs) 

$this or $this.Property

string

https://github.com/JonghoL/EventBindingMarkup