我在 WPF 中有一个带有一些列和行的数据网格。当我单击一行时,我想获取所选行的第一列。我该怎么做?我可以为此使用 LINQ 吗?谢谢
问问题
15113 次
2 回答
0
var firstSelectedCellContent = this.dataGrid.Columns[0].GetCellContent(this.dataGrid.SelectedItem);
var firstSelectedCell = firstSelectedCellContent != null ? firstSelectedCellContent.Parent as DataGridCell : null;
这样,您可以获得作为 DataGridCell 和 DataGridCell 本身内容的 FrameworkElement。
请注意,如果 DataGrid 有EnableColumnVirtualization = True
,那么您可能会从上面的代码中获得空值。
对于特定的 DataGridCell,要从数据源获取实际值要复杂一些。没有通用的方法可以做到这一点,因为 DataGridCell 可以由来自支持数据源的多个值(属性)构成,因此您需要为特定的 DataGridColumn 处理此问题。
于 2012-06-17T12:33:06.330 回答
0
您可以简单地使用此扩展方法-
public static DataGridRow GetSelectedRow(this DataGrid grid)
{
return (DataGridRow)grid.ItemContainerGenerator.ContainerFromItem(grid.SelectedItem);
}
并且您可以通过现有的行和列 id(在您的情况下为 0)获取 DataGrid 的单元格:
public static DataGridCell GetCell(this DataGrid grid, DataGridRow row, int column)
{
if (row != null)
{
DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(row);
if (presenter == null)
{
grid.ScrollIntoView(row, grid.Columns[column]);
presenter = GetVisualChild<DataGridCellsPresenter>(row);
}
DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
return cell;
}
return null;
}
检查此链接以获取详细信息 -获取 WPF DataGrid 行和单元格
于 2012-06-17T11:32:01.737 回答