将事件绑定到ViewModel

本文关键字:ViewModel 绑定 事件 | 更新日期: 2023-09-27 18:12:35

我的应用程序使用WPF和PRISM框架。我使用的模式是MVVM(模型-视图- ViewModel),我试图将MouseLeftButtonUp事件从视图中的代码后面带到ViewModel(因此事件将根据MVVM规则)。现在我有这个:

View.xaml:

<DataGrid x:Name="employeeGrid" Height="250" Margin="25,0,10,0" ItemsSource="{Binding DetacheringenEmployeesModel}" IsReadOnly="True" ColumnHeaderStyle="{DynamicResource CustomColumnHeader}" AutoGenerateColumns="False" RowHeight="30">
        <i:Interaction.Triggers>
            <i:EventTrigger EventName="MouseLeftButtonUp">
                 <i:InvokeCommandAction Command="{Binding EmployeeGrid_MouseLeftButtonUp}" />
            </i:EventTrigger>
        </i:Interaction.Triggers>
<DataGrid.Columns>

View.xaml.cs(后台代码):

public partial class UC1001_DashBoardConsultants_View
{
    public UC1001_DashBoardConsultants_View(UC1001_DashboardConsultantViewModel viewModel)
    {
            InitializeComponent();
            DataContext = viewModel;
    }
}

ViewModel.cs:

 public void EmployeeGrid_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
 {
     // insert logic here
 }

主要思想是,当我单击DataGrid中的一个单元格时,事件将被触发。我首先在后面的代码中尝试了它,它工作了。到目前为止,我得到了EventTriggers,但是当我调试并单击一个单元格时,我的调试器没有进入方法。

有人知道如何解决这个问题吗?提前感谢!

PS:当我这样做时,它是否也与(对象发送者)参数一起工作?因为我需要ViewModel中的DataGrid来获取我刚刚点击的ActiveCell

编辑:

事件绑定与Command!

我有这个在我的DataGrid:

<DataGridTextColumn Header="Okt" Width="*" x:Name="test" >
     <DataGridTextColumn.ElementStyle>
           <Style TargetType="{x:Type TextBlock}">
             <Setter Property="Tag" Value="{Binding Months[9].AgreementID}"/>

如何将Tag属性绑定到ViewModel?我知道它已经从ViewModel绑定,但正如你所看到的值来自数组/列表和每列的值是不同的。

将事件绑定到ViewModel

InvokeCommandAction要求将ICommand绑定为事件处理程序,而不是绑定(EmployeeGrid_MouseLeftButtonUp)。

所以你可以在ViewModel中引入一个命令并绑定到它:

视图模型:

public ICommand SomeActionCommand { get; set; }

XAML:

<i:InvokeCommandAction Command="{Binding SomeActionCommand}" />