1

我通过 MVVM 在 WPF 中填充 DataGrid。我有具有 4 个属性的业务对象来在 DataGrid 中创建行和列。

<DataGrid CanUserAddRows="True" ItemsSource="{Binding Path=PersonsInfo}" AutoGenerateColumns="False"
                  CanUserDeleteRows="True" CanUserReorderColumns="True" 
                  CanUserSortColumns="True">
            <DataGrid.Columns>
                <DataGridTextColumn Header="Name" Binding="{Binding Path=Name}"/>
                <DataGridTextColumn Header="Age" Binding="{Binding Path=Age}"/>
                <DataGridTextColumn Header="Date Of Birth" Binding="{Binding Path=DateOfBirth}"/>
                <DataGridTextColumn Header="Address" Binding="{Binding Path=Address}"/>
                <DataGridTemplateColumn>
                    <DataGridTemplateColumn.CellTemplate>
                        <DataTemplate>
                            <Grid>
                                <Button Content="Remove..." Margin="3" Command="{Binding Path=RemoveCommand}" />
                            </Grid>
                        </DataTemplate>
                    </DataGridTemplateColumn.CellTemplate>
                </DataGridTemplateColumn>
            </DataGrid.Columns>
        </DataGrid>

在上面的代码中,当我单击按钮时,我需要从 DataGrid 中删除记录。

所以我需要这样的要求,我应该在业务对象类中拥有命令,而不是在 ViewModel 类中。

当我单击每一行中的按钮时,应该删除相应的行。

因此,由于业务对象类没有有关 DataGrid 项目的信息,如何通过业务对象类中的命令执行找到在 DataGrid 中选择了哪个项目以删除行?

4

1 回答 1

5

首先,不要将您的命令放入您ModelRelativeSource. 像这样:

<Button Command="{Binding RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}, Path=DataContext.RemoveCommand}" />

其次,您可以将您的财产绑定到您DataGrid SelectedItem的财产上ViewModel

<DataGrid SelectedItem="{Binding SelectedItemProperty, Mode=TwoWay}" .../>

或通过CommandParameter.

<Button Command="{Binding RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}, Path=DataContext.RemoveCommand}" CommandParameter="{Binding}" />
于 2012-05-15T07:40:50.683 回答