我在WPF中有一个带有一些列和行的数据网格。当我点击一行时,我想获得所选行的第一列。我该怎么做?我可以使用LINQ吗? 感谢名单
答案 0 :(得分: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;
}
查看此链接了解详情 - Get WPF DataGrid row and cell
答案 1 :(得分:0)
var firstSelectedCellContent = this.dataGrid.Columns[0].GetCellContent(this.dataGrid.SelectedItem);
var firstSelectedCell = firstSelectedCellContent != null ? firstSelectedCellContent.Parent as DataGridCell : null;
通过这种方式,您可以获得FrameworkElement,它是DataGridCell和DataGridCell本身的内容。
请注意,如果DataGrid有EnableColumnVirtualization = True
,那么您可能会从上面的代码中获取空值。
要从特定DataGridCell的数据源获取实际值,要稍微复杂一些。没有通用的方法,因为DataGridCell可以由备份数据源中的多个值(属性)构成,因此您需要为特定的DataGridColumn处理此问题。