本文介绍了获取数据网格行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何获取DataGrid中的行列表?不是绑定项目,而是
DataGridRows 列表。

How can I get the list of rows in the DataGrid? Not the bound items, but theDataGridRows list.

我需要控制这些项目的可见性行,并且只能将其作为 DataGridRow 而不是作为数据对象进行控制。

I need to control the visibility of these rows and it's only possible to control it as a DataGridRow and not as a data object.

谢谢!

推荐答案

您可以使用。这应该工作-

You can get the row using ItemContainerGenerator. This should work -

for (int i = 0; i < dataGrid.Items.Count; i++)
{
    DataGridRow row = (DataGridRow)dataGrid.ItemContainerGenerator
                                               .ContainerFromIndex(i);
}

这篇关于获取数据网格行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 21:00