WPF数据网格CurrentCell属性仅触发一次MVVM

时间:2019-01-28 09:47:32

标签: c# wpf

我有一个数据网格,看起来像:

<DataGrid x:Name="Applications" CanUserResizeColumns="False" CanUserResizeRows="False"  
 AutoGenerateColumns="false" CanUserAddRows="false" ItemsSource="{Binding Applications}" 
 SelectionMode="Single"
 CurrentCell="{Binding CellInfo, Mode=TwoWay}">

我有一个关于CurrentCell的问题,它在视图模型中绑定到poeprty,如下所示:

    private DataGridCellInfo cellInfo;
    public DataGridCellInfo CellInfo
    {
        get => cellInfo;
        set
        {
            cellInfo = value;
            OnPropertyChanged();

            if (cellInfo.Column.DisplayIndex == 1)
            {
                var selectedApplication = (ExtendedApplicationFile)cellInfo.Item;
                ExpandAppDetailsCommand.Execute(selectedApplication);
            }
        }
    }

它的作用是,它设置正确的项目并将其发送到将扩展并隐藏行详细信息窗口的命令。

问题是,如果我单击一次属性设置,它将扩展,但是当我第二次在同一单元格上单击时,属性未设置并且详细信息行未折叠。当我单击其他单元格并返回它时,它将再次起作用,但这不是我想要的。

1 个答案:

答案 0 :(得分:0)

基于评论中的信息,我想出了一个简单的解决方案,我添加了带有事件触发器的单元格模板:

<DataGridTemplateColumn.CellTemplate>
       <DataTemplate>
             <Label Content="{Binding Name}" Width="350">
                   <i:Interaction.Triggers>
                         <i:EventTrigger EventName="MouseDown">
                                  <i:InvokeCommandAction Command="{Binding DataContext.ExpandAppDetailsCommand, RelativeSource={RelativeSource AncestorType=DataGrid}}" CommandParameter="{Binding}"/>
                          </i:EventTrigger>
                    </i:Interaction.Triggers>
                 </Label>
           </DataTemplate>                
</DataGridTemplateColumn.CellTemplate>

每次单击单元格时,使用瘦按钮都会触发事件并切换详细信息视图。