WPF - 将 EventSetter 连接到 ICommand

WPF - Connect EventSetter to an ICommand

我正在寻找一种解决方案,我双击 DataGridRow,它使用 ICommand 调用我的 ViewModel 中的方法。

我的 DataGrid 的 DataGridRow 样式有以下代码:

<DataGrid.Resources>
    <Style TargetType="{x:Type DataGridRow}">
        <EventSetter Event="MouseDoubleClick"
                     Handler="DataGridRow_MouseDoubleClick" />
    </Style>
</DataGrid.Resources>

这可行,但是...
我需要在 XAML 的代码隐藏中使用方法 DataGridRow_MouseDoubleClick。然后在该方法中我需要在我的 ViewModel 中调用该方法。
我想绕过代码隐藏并直接使用 ICommand 调用 ViewModel 中的方法。

我发现这段代码很优雅,但是在我(左)双击 DataGrid 的任何地方调用该方法。

<DataGrid>
    <DataGrid.InputBindings>
        <MouseBinding Gesture="LeftDoubleClick"
                      Command="{Binding MyCallback}" />
    </DataGrid.InputBindings>-->
</DataGrid>

我只能双击 DataGridRow。

有什么建议吗?

/BR
史蒂夫

首先,在您的项目中安装下面提到的 Nuget 包。

Microsoft.Xaml.Behaviors.Wpf

然后将以下引用添加到相关 xaml 字段。

xmlns:i="http://schemas.microsoft.com/xaml/behaviors"

下一步,您可以按如下方式应用双击功能。

<i:Interaction.Triggers>
     <i:EventTrigger EventName="MouseDoubleClick">
          <i:InvokeCommandAction Command="{Binding MyCallback}"/>
     </i:EventTrigger>
</i:Interaction.Triggers>

您可以将事件处理程序替换为执行命令的附加行为:

public static class DataGridRowExtensions
{
    public static readonly DependencyProperty MouseDoubleClickCommandProperty =
        DependencyProperty.RegisterAttached(
            "MouseDoubleClickCommand",
            typeof(ICommand),
            typeof(DataGridRowExtensions),
            new FrameworkPropertyMetadata(default(ICommand), new PropertyChangedCallback(OnSet))
    );

    public static ICommand GetMouseDoubleClickCommand(DataGridRow target) =>
        (ICommand)target.GetValue(MouseDoubleClickCommandProperty);

    public static void SetMouseDoubleClickCommand(DataGridRow target, ICommand value) =>
        target.SetValue(MouseDoubleClickCommandProperty, value);

    private static void OnSet(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        DataGridRow row = (DataGridRow)d;
        row.MouseDoubleClick += Row_MouseDoubleClick;
    }

    private static void Row_MouseDoubleClick(object sender, MouseButtonEventArgs e)
    {
        DataGridRow row = (DataGridRow)sender;
        ICommand command = GetMouseDoubleClickCommand(row);
        if (command != null)
            command.Execute(default);
    }
}

XAML:

<Style TargetType="{x:Type DataGridRow}">
    <Setter Property="local:DataGridRowExtensions.MouseDoubleClickCommand"
            Value="{Binding DataContext.MyCallback,
                RelativeSource={RelativeSource AncestorType=DataGrid}}" />
</Style>